Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 14595bf69 -> 4d564ad4e


add COLUMNDICT info


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

Branch: refs/heads/master
Commit: c969e0fc62bf28b96d5e67293538ae600a31779e
Parents: 14595bf
Author: Jay357089 <liujunj...@huawei.com>
Authored: Sun Oct 9 17:22:22 2016 +0800
Committer: jackylk <jacky.li...@huawei.com>
Committed: Sun Oct 16 10:07:18 2016 +0800

----------------------------------------------------------------------
 docs/DML-Operations-on-Carbon.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/c969e0fc/docs/DML-Operations-on-Carbon.md
----------------------------------------------------------------------
diff --git a/docs/DML-Operations-on-Carbon.md b/docs/DML-Operations-on-Carbon.md
index fa2305e..23a01ca 100644
--- a/docs/DML-Operations-on-Carbon.md
+++ b/docs/DML-Operations-on-Carbon.md
@@ -91,6 +91,12 @@ Following are the options that can be used in load data:
     ```ruby
     OPTIONS('ALL_DICTIONARY_PATH'='/opt/alldictionary/data.dictionary')
     ```
+- **COLUMNDICT:** dictionary file path for single column.
+
+    ```ruby
+    OPTIONS('COLUMNDICT'='column1:dictionaryFilePath1, 
column2:dictionaryFilePath2')
+    ```
+    Note: ALL_DICTIONARY_PATH and COLUMNDICT can't be used together.
 
 **Example:**
 
@@ -154,8 +160,8 @@ This command is to delete segment by using the segment ID.
   ```ruby
   DELETE SEGMENT 0 FROM TABLE CarbonDatabase.CarbonTable;
   DELETE SEGMENT 0.1,5,8 FROM TABLE CarbonDatabase.CarbonTable;
-  Note: Here 0.1 is compacted segment sequence id.  
   ```
+  Note: Here 0.1 is compacted segment sequence id.  
 
 ***
 

Reply via email to