morrySnow commented on code in PR #1865: URL: https://github.com/apache/doris-website/pull/1865#discussion_r1921868827
########## docs/sql-manual/sql-functions/scalar-functions/array-functions/array-concat.md: ########## @@ -22,36 +22,69 @@ specific language governing permissions and limitations under the License. --> -## array_concat - -array_concat - -### description +### Description Concat all arrays passed in the arguments -#### Syntax - -`Array<T> array_concat(Array<T>, ...)` +## Syntax +```sql +ARRAY_CONCAT(<arr1> [,<arr2> , ...]) +``` -#### Returned value +## Parameters +| Parameter | Description | +|---|---| +| `<arr1>` | ARRAY array | +| `<arr2>` | ARRAY array | Review Comment: 这个参数说明也要改一下~ -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
