This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new ea80b34fea4 branch-3.0: [Enhancement](function) Print exact column
name when execute non_nullable failed #44679 (#44741)
ea80b34fea4 is described below
commit ea80b34fea490cb7aa716449f52a2aef649ce745
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 11 22:56:34 2024 +0800
branch-3.0: [Enhancement](function) Print exact column name when execute
non_nullable failed #44679 (#44741)
Cherry-picked from #44679
Co-authored-by: zclllhhjj <[email protected]>
---
be/src/vec/functions/function_nullables.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/vec/functions/function_nullables.cpp
b/be/src/vec/functions/function_nullables.cpp
index 0fdcfbc2175..532dc7097c1 100644
--- a/be/src/vec/functions/function_nullables.cpp
+++ b/be/src/vec/functions/function_nullables.cpp
@@ -96,7 +96,7 @@ public:
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()));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]