You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@doris.apache.org by GitBox <gi...@apache.org> on 2019/07/02 07:55:39 UTC

[GitHub] [incubator-doris] imay commented on a change in pull request #1418: SetSmt support Expr

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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@doris.apache.org
For additional commands, e-mail: dev-help@doris.apache.org