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/02/09 02:20:22 UTC

carbondata git commit: [Documentation] Formatting issue fixed

Repository: carbondata
Updated Branches:
  refs/heads/master 72a20ad75 -> aebe55ebd


[Documentation] Formatting issue fixed

This closes #1954


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

Branch: refs/heads/master
Commit: aebe55ebd847d1dc607fb55d0148892c30f2c576
Parents: 72a20ad
Author: Jatin <ja...@knoldus.in>
Authored: Thu Feb 8 16:25:14 2018 +0530
Committer: Jacky Li <ja...@qq.com>
Committed: Fri Feb 9 10:20:13 2018 +0800

----------------------------------------------------------------------
 docs/data-management-on-carbondata.md | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/carbondata/blob/aebe55eb/docs/data-management-on-carbondata.md
----------------------------------------------------------------------
diff --git a/docs/data-management-on-carbondata.md b/docs/data-management-on-carbondata.md
index c846ffc..fba2916 100644
--- a/docs/data-management-on-carbondata.md
+++ b/docs/data-management-on-carbondata.md
@@ -628,8 +628,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa
   ```
   LOAD DATA [LOCAL] INPATH 'folder_path' 
   INTO TABLE [db_name.]table_name PARTITION (partition_spec) 
-  OPTIONS(property_name=property_value, ...)
-    
+  OPTIONS(property_name=property_value, ...)    
   INSERT INTO INTO TABLE [db_name.]table_name PARTITION (partition_spec) <SELECT STATMENT>
   ```
   
@@ -637,8 +636,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa
   ```
   LOAD DATA LOCAL INPATH '${env:HOME}/staticinput.csv'
   INTO TABLE locationTable
-  PARTITION (country = 'US', state = 'CA')
-    
+  PARTITION (country = 'US', state = 'CA')  
   INSERT INTO TABLE locationTable
   PARTITION (country = 'US', state = 'AL')
   SELECT <columns list excluding partition columns> FROM another_user
@@ -651,8 +649,7 @@ This tutorial is going to introduce all commands and data operations on CarbonDa
   Example:
   ```
   LOAD DATA LOCAL INPATH '${env:HOME}/staticinput.csv'
-  INTO TABLE locationTable
-          
+  INTO TABLE locationTable          
   INSERT INTO TABLE locationTable
   SELECT <columns list excluding partition columns> FROM another_user
   ```