You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ku...@apache.org on 2020/10/27 06:02:39 UTC

[carbondata] branch master updated: [DOC] Adjust partition table document

This is an automated email from the ASF dual-hosted git repository.

kunalkapoor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/carbondata.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ea0515  [DOC] Adjust partition table document
9ea0515 is described below

commit 9ea051532e665acda9bb62cbc9691a8263ca94b8
Author: QiangCai <qi...@qq.com>
AuthorDate: Fri Oct 23 15:05:36 2020 +0800

    [DOC] Adjust partition table document
    
    Why is this PR needed?
    the function description of the partitioned table is incorrect
    
    What changes were proposed in this PR?
    1. not support splitting partition
    2. change "STANDARD PARTITION" to "PARTITION"
    
    This close #3996
---
 docs/ddl-of-carbondata.md | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/docs/ddl-of-carbondata.md b/docs/ddl-of-carbondata.md
index 9d68296..208baca 100644
--- a/docs/ddl-of-carbondata.md
+++ b/docs/ddl-of-carbondata.md
@@ -915,8 +915,6 @@ Users can specify which columns to include and exclude for local dictionary gene
 
 ## PARTITION
 
-### STANDARD PARTITION
-
   The partition is similar as spark and hive partition, user can use any column to build partition:
 
 #### Create Partition Table
@@ -985,7 +983,6 @@ Users can specify which columns to include and exclude for local dictionary gene
   WHERE au.country = 'US';
   ```
 
-
 ### Show Partitions
 
   The following command is executed to get the partition information of the table
@@ -1000,12 +997,6 @@ Users can specify which columns to include and exclude for local dictionary gene
   ALTER TABLE [db_name].table_name ADD PARTITION('new_partition')
   ```
 
-### Split a partition
-
-  ```
-  ALTER TABLE [db_name].table_name SPLIT PARTITION(partition_id) INTO('new_partition1', 'new_partition2'...)
-  ```
-
 ### Drop a partition
 
   Only drop partition definition, but keep data