zzcclp commented on a change in pull request #3136: Update dml-of-carbondata.md
URL:
https://github.com/apache/carbondata/pull/3136#discussion_r261028695
##########
File path: docs/dml-of-carbondata.md
##########
@@ -352,18 +352,18 @@ CarbonData DML statements are documented here,which includes:
```
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 STATEMENT>
```
Example:
```
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
Review comment:
Better to add a blank line between these two sql.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services