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?
