Search before asking
Version
1.2-lts
What's Wrong?
memory leak
What You Expected?
fix
How to Reproduce?
Create two table and insert some data:
> create table test_a (id int, comment string) duplicate key(id) distributed by hash(id) buckets 1 properties("replication_num"="1");
> create table test_b (id int, comment string) duplicate key(id) distributed by hash(id) buckets 1 properties("replication_num"="1");
> insert into test_a values(1, "hello");
> insert into test_b values(1, "hello");
run this SQL for a long time, we found memory leak:
> with temp_a as (select * from test_a where id = 1 and comment like '%hello%'), temp_b as (select * from test_b where id = 1) select * from temp_a join temp_b ON test_a.id = test_b.id;
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
Search before asking
Version
1.2-lts
What's Wrong?
memory leak
What You Expected?
fix
How to Reproduce?
Create two table and insert some data:
run this SQL for a long time, we found memory leak:
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct