cambyzju commented on code in PR #10749:
URL: https://github.com/apache/doris/pull/10749#discussion_r918470842


##########
docs/zh-CN/docs/sql-manual/sql-functions/string-functions/concat_ws.md:
##########
@@ -58,6 +59,27 @@ mysql> select concat_ws("or", "d", NULL,"is");
 +---------------------------------+
 | doris                           |
 +---------------------------------+
+
+mysql> select concat_ws("or", ["d", "is"]);
++-----------------------------------+
+| concat_ws('or', ARRAY('d', 'is')) |
++-----------------------------------+
+| doris                             |
++-----------------------------------+
+
+mysql> select concat_ws(NULL, ["d", "is"]);
++-----------------------------------+
+| concat_ws(NULL, ARRAY('d', 'is')) |
++-----------------------------------+
+| NULL                              |
++-----------------------------------+
+
+mysql> select concat_ws("or", ["d", NULL,"is"]);
++-----------------------------------------+
+| concat_ws('or', ARRAY('d', NULL, 'is')) |
++-----------------------------------------+
+| doris                                   |
++-----------------------------------------+
 ```
 ### keywords
 CONCAT_WS,CONCAT,WS

Review Comment:
   keywords add 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

Reply via email to