This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to tag 2.0.15.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 85046cee35345986de48b910bf90a819509cc65f Author: Kang <[email protected]> AuthorDate: Mon Nov 18 20:39:55 2024 +0800 fix problem introduced by #38716 --- be/src/vec/columns/column_nullable.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/be/src/vec/columns/column_nullable.h b/be/src/vec/columns/column_nullable.h index 96ac8a8355d..89cd27e8bd0 100644 --- a/be/src/vec/columns/column_nullable.h +++ b/be/src/vec/columns/column_nullable.h @@ -353,6 +353,8 @@ public: if (!nullable_rhs.is_null_at(row)) { nested_column->replace_column_data(*nullable_rhs.nested_column, row, self_row); + } else { + nested_column->replace_column_data_default(self_row); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
