Jackie-Jiang commented on issue #16022: URL: https://github.com/apache/pinot/issues/16022#issuecomment-2971874028
@jadami10 Here is the code from `org.apache.pinot.common.function.scalar.StringFunctions`: ``` /** * Joins two input strings with no separator in between. */ @ScalarFunction public static String concat(String input1, String input2) { return input1 + input2; } ``` So I believe Pinot supports both right now based on the argument count -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org