amorynan commented on code in PR #2721:
URL: https://github.com/apache/doris-website/pull/2721#discussion_r2296644744


##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/array-functions/array-map.md:
##########
@@ -5,178 +5,140 @@
 }
 ---
 
+## array_map
+
+<version since="2.0.0">
+
+</version>
+
 ## 描述
 
-使用一个 lambda 表达式作为输入参数,对其他的输入 ARRAY 参数的内部数据做对应表达式计算。
-在 lambda 表达式中输入的参数为 1 个或多个,必须和后面的输入 array 列数量一致。
-在 lambda 中可以执行合法的标量函数,不支持聚合函数等。
+对数组中的元素应用 lambda 表达式,返回一个新数组。函数会为数组中的每个元素应用 lambda 表达式,返回对应的结果。
 
 ## 语法
+
 ```sql
-ARRAY_MAP(lambda, <arr> [ , <arr> ... ] )
+array_map(lambda, ARRAY<T> arr1, [ARRAY<T> arr2, ...])

Review Comment:
   会根据FE 的规则做隐式转换



-- 
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]

Reply via email to