yinzhijian commented on code in PR #10467: URL: https://github.com/apache/doris/pull/10467#discussion_r909599132
########## fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionSet.java: ########## @@ -1263,6 +1263,11 @@ public void addScalarAndVectorizedBuiltin(String fnName, String symbol, boolean boolean varArgs, Type ... args) { ArrayList<Type> argsType = new ArrayList<Type>(); for (Type type : args) { + // only to prevent olap scan node use array expr to find a fake symbol + // TODO: delete the code after we remove origin exec engine + if (type.isArrayType()) { + symbol = "_ZN5doris19array_fake_fucntionEPN9doris_udf15FunctionContextE"; Review Comment: array_fake_function -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org