Naman Rastogi created CARBONDATA-2959:
-----------------------------------------
Summary: Validation required when Long_string_columns are included for some TBL properties
Key: CARBONDATA-2959
URL:
https://issues.apache.org/jira/browse/CARBONDATA-2959 Project: CarbonData
Issue Type: Improvement
Reporter: Naman Rastogi
:Validation required when Long_string_columns are included in some TBL properties like dictionary_include,dictionary_exclude,no_inverted_index and scenarios when duplicate columns,invalid columns and partition column are provided in long_string_columns while creating table
【Precondition] :NA
【Test step】:
CREATE TABLE lsc1(id int, name string, description string,address string, note string) using carbon options('long_string_columns'='note,note');
CREATE TABLE lsc2(id int, name string, description string,address string, note string) using carbon options('long_string_columns'='');
CREATE TABLE lsc3(id int, name string, description string,address string, note string) using carbon options('long_string_columns'='abc');
CREATE TABLE lsc4(id int, name string, description string,address string, note string) using carbon options('long_string_columns'='id');
CREATE TABLE lsc5(id int, name string, description string,address string, note string) using carbon options('dictionary_include'='note','long_string_columns'='note,description');
CREATE TABLE lsc6(id int, name string, description string,address string, note string) using carbon options('dictionary_exclude'='note','long_string_columns'='note,description');
CREATE TABLE lsc8(id int, name string, description string,address string, note string) using carbon options('no_inverted_index'='note','long_string_columns'='note,description');
CREATE TABLE lcs9(id int,name string, description string,address string,note string) using carbon options('long_string_columns'='note,description') partitioned by (note);
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)