kangkaisen commented on a change in pull request #4439: URL: https://github.com/apache/incubator-doris/pull/4439#discussion_r476426636
########## File path: fe/fe-core/src/main/java/org/apache/doris/analysis/Expr.java ########## @@ -1405,7 +1405,15 @@ protected Function getBuiltinFunction( throws AnalysisException { FunctionName fnName = new FunctionName(name); Function searchDesc = new Function(fnName, argTypes, Type.INVALID, false); - return Catalog.getCurrentCatalog().getFunction(searchDesc, mode); + Function f = Catalog.getCurrentCatalog().getFunction(searchDesc, mode); + if (f != null && fnName.getFunction().equalsIgnoreCase("rand")) { + if (this.children != null Review comment: children is init with `Lists.newArrayList();` in `TreeNode`, so it won't be null. ---------------------------------------------------------------- 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. 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