You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ku...@apache.org on 2018/04/02 07:07:18 UTC

carbondata git commit: [Documentation] The syntax and the example is corrected

Repository: carbondata
Updated Branches:
  refs/heads/branch-1.3 b1fbcaa2c -> b704c1aa8


[Documentation] The syntax and the example is corrected

Overwrite syntax and examples where corrected as it was throwing error

This closes #2116


Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo
Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/b704c1aa
Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/b704c1aa
Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/b704c1aa

Branch: refs/heads/branch-1.3
Commit: b704c1aa8467dc03573563b15f3e4f7a3da365b3
Parents: b1fbcaa
Author: sgururajshetty <sg...@gmail.com>
Authored: Fri Mar 30 17:44:05 2018 +0530
Committer: kunal642 <ku...@gmail.com>
Committed: Mon Apr 2 12:35:48 2018 +0530

----------------------------------------------------------------------
 docs/data-management-on-carbondata.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/carbondata/blob/b704c1aa/docs/data-management-on-carbondata.md
----------------------------------------------------------------------
diff --git a/docs/data-management-on-carbondata.md b/docs/data-management-on-carbondata.md
index 04f2123..aa3e9c9 100644
--- a/docs/data-management-on-carbondata.md
+++ b/docs/data-management-on-carbondata.md
@@ -491,7 +491,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa
 
   Overwrite insert data:
   ```
-  INSERT OVERWRITE <CARBONDATA TABLE> SELECT * FROM sourceTableName 
+  INSERT OVERWRITE TABLE <CARBONDATA TABLE> SELECT * FROM sourceTableName 
   [ WHERE { <filter_condition> } ]
   ```
 
@@ -511,7 +511,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa
   ```
 
   ```
-  INSERT OVERWRITE table1 SELECT * FROM TABLE2
+  INSERT OVERWRITE TABLE table1 SELECT * FROM TABLE2
   ```
 
 ## UPDATE AND DELETE