Skip to content

Commit

Permalink
fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglistar committed Dec 24, 2024
1 parent 7f6d73a commit f9ddccf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class FunctionParserConcat : public FunctionParser
if (args.size() == 1 && isArray(removeNullable(args[0]->result_type)))
ch_function_name = "arrayConcat";

auto * result_node = toFunctionNode(actions_dag, "concat", args);
auto * result_node = toFunctionNode(actions_dag, ch_function_name, args);
return convertNodeTypeIfNeeded(substrait_func, result_node, actions_dag);
}
};
Expand Down

0 comments on commit f9ddccf

Please sign in to comment.