Skip to content

be cored when select BITMAP_UNION after schema change #2529

@jmk1011

Description

@jmk1011

Describe the bug
be cored when select BITMAP_UNION after schema change
image

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

Metadata

Metadata

Assignees

Labels

area/sql/executionIssues or PRs related to the execution enginekind/fixCategorizes issue or PR as related to a bug.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions