You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select a.statistic_data,bitmap_or(a.one_id, b.one_id) as one_id from
(
select statistic_data,one_id from behavior_bitmap_base where identity_type_desc = 'MemberID'
) a join
(
select one_id from behavior_bitmap_base where system_type = 'm_oneid'
) b
union all
select a.statistic_data,bitmap_or(a.one_id, b.one_id) as one_id from
(
select statistic_data,one_id from behavior_bitmap_base where identity_type_desc = 'CustomerID'
) a join
(
select one_id from orga302af5ab5e84d5e3c06900a6c9e65df.behavior_bitmap_base where system_type = 'c_oneid'
) b;
Search before asking
Version
trunk branch commit id:39663119ca435d4f1b8fe64c75def2e61484594f
Also in branch-1.2-lts
What's Wrong?
Heap use after free
What You Expected?
All is well
How to Reproduce?
1、create table with bitmap function
2、load some data(skip details)
3、vim select_1.sql
4、pressure test
Anything Else?
It was coredump both in jemalloc and tcmalloc:
1、jemalloc coredump:
2、tcmalloc coredump
3、asan output:
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: