Skip to content

Commit

Permalink
branch-3.0: [Enhancement](function) Print exact column name when exec…
Browse files Browse the repository at this point in the history
…ute non_nullable failed #44679 (#44741)

Cherry-picked from #44679

Co-authored-by: zclllhhjj <[email protected]>
  • Loading branch information
github-actions[bot] and zclllyybb authored Dec 11, 2024
1 parent 8d81327 commit ea80b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/function_nullables.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class FunctionNonNullable : public IFunction {
if (col_null->has_null()) [[unlikely]] {
return Status::InvalidArgument(
"There's NULL value in column {} which is illegal for non_nullable",
data.column->get_name());
data.name);
}
const ColumnPtr& nest_col = col_null->get_nested_column_ptr();
block.replace_by_position(result, nest_col->clone_resized(nest_col->size()));
Expand Down

0 comments on commit ea80b34

Please sign in to comment.