Merge pull request #69404 from bigo-sg/69135

`have_compressed` is lost in `HashJoin::reuseJoinedData`
This commit is contained in:
Nikita Taranov 2024-09-13 16:39:43 +00:00 committed by GitHub
commit bab574d674
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1236,6 +1236,7 @@ IBlocksStreamPtr HashJoin::getNonJoinedBlocks(const Block & left_sample_block,
void HashJoin::reuseJoinedData(const HashJoin & join) void HashJoin::reuseJoinedData(const HashJoin & join)
{ {
have_compressed = join.have_compressed;
data = join.data; data = join.data;
from_storage_join = true; from_storage_join = true;