imay commented on a change in pull request #1418: SetSmt support Expr URL: https://github.com/apache/incubator-doris/pull/1418#discussion_r299341375
########## File path: fe/src/main/java/org/apache/doris/rewrite/FEFunctions.java ########## @@ -666,4 +667,14 @@ public static DecimalLiteral divideDecimalV2(LiteralExpr first, LiteralExpr seco BigDecimal result = left.divide(right); return new DecimalLiteral(result); } + + @FEFunction(name = "concat", argTypes = { "VARCHAR"}, returnType = "VARCHAR") + public static StringLiteral concat(StringLiteral ... values) throws AnalysisException { Review comment: ```suggestion public static StringLiteral concat(StringLiteral... values) throws AnalysisException { ``` ---------------------------------------------------------------- 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 With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org