Skip to content

Commit

Permalink
fix problem introduced by #38716
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaokang committed Nov 18, 2024
1 parent 04bef05 commit 821706b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions be/src/vec/columns/column_nullable.h
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,8 @@ class ColumnNullable final : public COWHelper<IColumn, ColumnNullable> {

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);
}
}

Expand Down

0 comments on commit 821706b

Please sign in to comment.