Hi, By default the value larger than max boundary you defined will fall into the default partition. You can also use ALTER TABLE statement to add a partition. Pls refer to the documents in carbondata official site http://carbondata.apache.org/data-management-on-carbondata.html
Regards, Lionel On Mon, Aug 13, 2018 at 2:43 PM, 喜之郎 <[email protected]> wrote: > hi community, > carbon have a range partition feature, for example: > CREATE TABLE test_range ( > _col_a int) > partitioned by (productid int) > STORED BY 'carbondata' > TBLPROPERTIES ('partition_type'='RANGE', 'RANGE_INFO'='1, 100, 200, 300') > > > > can we add a partition which store productid between 300 and 400, > if we can, how to write this add partition sql?
