Hi all:
I can create the kudu table using the field type by kudu api,but it is not
supported by impala shell.why?
Here are two examples:
[db.sky.org:21000] >
[db.sky.org:21000] > create table test(id int primary key,id2 binary) partition
by hash partitions 8 stored as kudu;
Query: create table test(id int primary key,id2 binary) partition by hash
partitions 8 stored as kudu
ERROR: AnalysisException: Unsupported data type: BINARY
[db.sky.org:21000] >
[db.sky.org:21000] > create external table test stored as kudu
TBLPROPERTIES('kudu.table_name'='test_type');
Query: create external table test stored as kudu
TBLPROPERTIES('kudu.table_name'='test_type')
ERROR:
ImpalaRuntimeException: Error loading schema of table 'test_type'
CAUSED BY: ImpalaRuntimeException: Kudu type 'bool' is not supported in Impala
[db.sky.org:21000] >