xiaohui created CARBONDATA-3954:
----------------------------------- Summary: Global sorting with array, if read from ORC format, write to carbon, error; If you use no_sort, success; Key: CARBONDATA-3954 URL: https://issues.apache.org/jira/browse/CARBONDATA-3954 Project: CarbonData Issue Type: Bug Components: spark-integration Affects Versions: 2.0.0 Reporter: xiaohui 0: jdbc:hive2://localhost:10000> use dict; +---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (0.391 seconds) 0: jdbc:hive2://localhost:10000> insert overwrite table array_carbon3 select name,col,fee from array_orc; Error: java.lang.Exception: DataLoad failure (state=,code=0) 0: jdbc:hive2://localhost:10000> create table array_carbon4(name string, col array<String>,fee int) STORED AS carbondata TBLPROPERTIES ('SORT_COLUMNS'='name', 0: jdbc:hive2://localhost:10000> 'TABLE_BLOCKSIZE'='128', 0: jdbc:hive2://localhost:10000> 'TABLE_BLOCKLET_SIZE'='128', 0: jdbc:hive2://localhost:10000> 'SORT_SCOPE'='no_SORT'); +---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (1.04 seconds) 0: jdbc:hive2://localhost:10000> insert overwrite table array_carbon4 select name,col,fee from array_orc; +---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (5.065 seconds) 0: jdbc:hive2://localhost:10000> create table array_carbon5(name string, col array<String>,fee int) STORED AS carbondata TBLPROPERTIES ('SORT_COLUMNS'='name', 0: jdbc:hive2://localhost:10000> 'TABLE_BLOCKSIZE'='128', 0: jdbc:hive2://localhost:10000> 'TABLE_BLOCKLET_SIZE'='128', 0: jdbc:hive2://localhost:10000> 'SORT_SCOPE'='global_SORT'); +---------+--+ | Result | +---------+--+ +---------+--+ No rows selected (0.098 seconds) 0: jdbc:hive2://localhost:10000> insert overwrite table array_carbon5 select name,col,fee from array_orc; Error: java.lang.Exception: DataLoad failure (state=,code=0) 0: jdbc:hive2://localhost:10000> select * from array_orc; +--------+-------------------------------+------+--+ | name | col | fee | +--------+-------------------------------+------+--+ | xiao3 | ["",null,"jkkkk"] | 3 | | xiao2 | ["上呼吸道疾病1","白内障1","胃溃疡1"] | 2 | | xiao3 | ["",null,"jkkkk"] | 3 | | xiao1 | ["上呼吸道疾病","白内障","胃溃疡"] | 1 | | xiao9 | NULL | 3 | | xiao9 | NULL | 3 | | xiao3 | NULL | 3 | | xiao6 | NULL | 3 | | xiao2 | ["上呼吸道疾病 1","白内障 1","胃溃疡 1"] | 2 | | xiao1 | ["上呼吸道疾病 ","白内障 ","胃溃疡 "] | 1 | | xiao3 | NULL | 3 | | xiao3 | [null] | 3 | | xiao3 | [""] | 3 | +--------+-------------------------------+------+--+ 13 rows selected (0.416 seconds) -- This message was sent by Atlassian Jira (v8.3.4#803005) |
Free forum by Nabble | Edit this page |