This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-1.1-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.1-lts by this push: new 67038cfa8b [fix](outerjoin)output full column for tupleIsNull predicate (#12732) 67038cfa8b is described below commit 67038cfa8b27f56fbf975c2041a7266dc379e354 Author: starocean999 <40539150+starocean...@users.noreply.github.com> AuthorDate: Tue Sep 20 10:32:43 2022 +0800 [fix](outerjoin)output full column for tupleIsNull predicate (#12732) --- be/src/vec/exec/join/vhash_join_node.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/be/src/vec/exec/join/vhash_join_node.cpp b/be/src/vec/exec/join/vhash_join_node.cpp index 23036f150c..171024c950 100644 --- a/be/src/vec/exec/join/vhash_join_node.cpp +++ b/be/src/vec/exec/join/vhash_join_node.cpp @@ -202,6 +202,9 @@ struct ProcessHashTableProbe { ->get_null_map_column() .insert_join_nullmap(_build_block_rows.data(), _build_block_rows.data() + size); + reinterpret_cast<ColumnNullable*>(mcol[i + column_offset].get()) + ->get_nested_column() + .resize(size); } else { mcol[i + column_offset]->resize(size); } @@ -274,6 +277,9 @@ struct ProcessHashTableProbe { ->get_null_map_column() .insert_join_nullmap(_build_block_rows.data(), _build_block_rows.data() + size); + reinterpret_cast<ColumnNullable*>(mcol[i + column_offset].get()) + ->get_nested_column() + .resize(size); } else { mcol[i + column_offset]->resize(size); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org