-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Description
Describe the bug
be cored when select BITMAP_UNION after schema change

To Reproduce
Steps to reproduce the behavior:
CREATE TABLE test_sys_bitmap_sc_test_sc_add_bitmap_column_tb ( id int COMMENT "", id1 tinyint COMMENT "", c_float float SUM COMMENT "", bitmap_set bitmap BITMAP_UNION COMMENT "" ) ENGINE=OLAP DISTRIBUTED BY HASH(id, id1) BUCKETS 5 PROPERTIES ( "storage_type" = "COLUMN" );
insert into test_sys_bitmap_sc_test_sc_add_bitmap_column_tb values (1,1,1.1,to_bitmap(1));
ALTER TABLE test_sys_bitmap_sc_test_sc_add_bitmap_column_db.test_sys_bitmap_sc_test_sc_add_bitmap_column_tb ADD COLUMN (bitmap_add bitmap BITMAP_UNION, bitmap_add_1 bitmap BITMAP_UNION);
select BITMAP_UNION(bitmap_add), BITMAP_UNION_COUNT(bitmap_add_1) from test_sys_bitmap_sc_test_sc_add_bitmap_column_tb;
code version
11b7800