cambyzju commented on code in PR #10749: URL: https://github.com/apache/doris/pull/10749#discussion_r918470367
########## regression-test/suites/query/sql_functions/string_functions/test_string_function.groovy: ########## @@ -38,6 +38,9 @@ suite("test_string_function", "query") { qt_sql "select concat_ws(\"or\", \"d\", \"is\");" qt_sql "select concat_ws(NULL, \"d\", \"is\");" qt_sql "select concat_ws(\"or\", \"d\", NULL,\"is\");" + qt_sql "select concat_ws(\"or\", [\"d\", \"is\"]);" + qt_sql "select concat_ws(NULL, [\"d\", \"is\"]);" + qt_sql "select concat_ws(\"or\", [\"d\", NULL,\"is\"]);" Review Comment: add case with empty string inside array. -- 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