Skip to content

Commit

Permalink
[fix](function) fix the be coredump caused by a constant in the field… (
Browse files Browse the repository at this point in the history
#37567)

cherry-pick #25859
  • Loading branch information
felixwluo authored Jul 17, 2024
1 parent f576272 commit ccdf938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/function_multi_same_args.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class FunctionMultiSameArgs : public IFunction {

String get_name() const override { return name; }

bool use_default_implementation_for_constants() const override { return true; }
bool use_default_implementation_for_constants() const override { return false; }

bool use_default_implementation_for_nulls() const override { return true; }

Expand Down

0 comments on commit ccdf938

Please sign in to comment.