You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ja...@apache.org on 2018/03/31 06:30:55 UTC

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

Repository: carbondata
Updated Branches:
  refs/heads/master cd509d5db -> f187856e3


[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/f187856e
Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/f187856e
Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/f187856e

Branch: refs/heads/master
Commit: f187856e3f6452a170aed758cd358109adbd40c1
Parents: cd509d5
Author: sgururajshetty <sg...@gmail.com>
Authored: Fri Mar 30 17:44:05 2018 +0530
Committer: Jacky Li <ja...@qq.com>
Committed: Sat Mar 31 14:30:41 2018 +0800

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


http://git-wip-us.apache.org/repos/asf/carbondata/blob/f187856e/docs/data-management-on-carbondata.md
----------------------------------------------------------------------
diff --git a/docs/data-management-on-carbondata.md b/docs/data-management-on-carbondata.md
index ecaf068..a992063 100644
--- a/docs/data-management-on-carbondata.md
+++ b/docs/data-management-on-carbondata.md
@@ -526,7 +526,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> } ]
   ```
 
@@ -546,7 +546,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