Drill Kudu query doesn't support range + hash multilevel partition.
Kudu table :
CREATE TABLE test1 (
id int ,
name string,
value string,
prmary key(id, name)
),
PARTITION BY HASH (name) PARTITIONS 8,
PARTITION BY RANGE (id) (
PARTITION 0 <= VALUES < 10000,
PARTITION 10000 <= VALUES < 20000,
PARTITION 20000 <= VALUES < 30000,
PARTITION 30000 <= VALUES < 40000
);
and then insert 20002 rows into test1, but query not support. query sql : select count(1) kudu.table_name, result : **No result found.**