Describe the bug
When create table with boolean type in Uniq model。load data will cause be to core dump。
Memtable current don't support the replace of boolean value in uniq model.
To Reproduce
Steps to reproduce the behavior:
启用 SegmentV2
set global default_rowset_type=beta;Create Table
create table t1 (c1 int, c2 boolean) aggregate key(c1) distributed by hash(c1) buckets1 properties("replication_num"=1)Insert data
insert into t1(c1, c2) values(1, true)Doredump
analyse
Memtable replace don't support boolean type
other
segment v1 column writer dont't support boolean type
How to fix
- memtable support replace boolean value
- column writer for v1 support boolean type
暂无答案!
目前还没有任何答案,快来回答吧!