[Bugfix](bitmap) Fix to_bitmap_with_check function symbol is incorrect (#13667)

* [Bugfix](bitmap) Fix to_bitmap_with_check function symbol is incorrect
This commit is contained in:
Zhengguo Yang
2022-10-26 14:27:38 +08:00
committed by GitHub
parent 3548d0b824
commit 65aa863dcf
3 changed files with 5 additions and 3 deletions

View File

@ -197,7 +197,9 @@ Status VUnionNode::get_next_const(RuntimeState* state, Block* block) {
&result_list[i]));
}
tmp_block.erase_not_in(result_list);
mblock.merge(tmp_block);
if (tmp_block.rows() > 0) {
mblock.merge(tmp_block);
}
}
if (!mem_reuse) {