Indhumathi27 commented on a change in pull request #4213:
URL: https://github.com/apache/carbondata/pull/4213#discussion_r717217995
##########
File path: docs/dml-of-carbondata.md
##########
@@ -37,13 +37,28 @@ CarbonData DML statements are documented here,which
includes:
This command is used to load csv files to carbondata, OPTIONS are not
mandatory for data loading process.
```
- LOAD DATA INPATH 'folder_path'
+ LOAD DATA INPATH 'folder_path' [ OVERWRITE ]
INTO TABLE [db_name.]table_name
OPTIONS(property_name=property_value, ...)
```
**NOTE**:
- * Use 'file://' prefix to indicate local input files path, but it just
supports local mode.
- * If run on cluster mode, please upload all input files to distributed
file system, for example 'hdfs://' for hdfs.
+ * Use 'file://' prefix to indicate local input files path, but it just
supports local mode.
+
+ * If run on cluster mode, please upload all input files to distributed file
system, for example 'hdfs://' for hdfs.
+
+* [ OVERWRITE ] :
Review comment:
```suggestion
* If the OVERWRITE keyword is used, then it will overwrite the existing data
in the table with new data.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]