Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

be cored when select BITMAP_UNION after schema change #2529

Closed
jmk1011 opened this issue Dec 23, 2019 · 0 comments
Closed

be cored when select BITMAP_UNION after schema change #2529

jmk1011 opened this issue Dec 23, 2019 · 0 comments
Assignees
Labels
area/sql/execution Issues or PRs related to the execution engine kind/fix Categorizes issue or PR as related to a bug.

Comments

@jmk1011
Copy link
Contributor

jmk1011 commented Dec 23, 2019

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

@kangkaisen kangkaisen self-assigned this Dec 23, 2019
@kangkaisen kangkaisen added the kind/fix Categorizes issue or PR as related to a bug. label Dec 23, 2019
@imay imay added the area/sql/execution Issues or PRs related to the execution engine label Apr 3, 2020
@imay imay closed this as completed Apr 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/sql/execution Issues or PRs related to the execution engine kind/fix Categorizes issue or PR as related to a bug.
Projects
None yet
Development

No branches or pull requests

3 participants