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


##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/array-functions/array-apply.md:
##########
@@ -5,44 +5,178 @@
 }
 ---
 
+## array_apply
+
+<version since="1.2.3">
+
+</version>
+
 ## 描述
-数组以特定的二元条件符过滤元素,并返回过滤后的结果
+
+使用指定的二元操作符对数组元素进行过滤,返回满足条件的元素组成的新数组。这是一个简化的数组过滤函数,使用预定义的操作符而不是 lambda 表达式。
 
 ## 语法
 
 ```sql
-ARRAY_APPLY(<arr>, <op>, <val>)
+array_apply(arr, op, val)
+```
+
+### 参数
+
+- `arr`:ARRAY\<T> 类型,要过滤的数组
+- `op`:STRING 类型,过滤条件操作符,必须是常量值。支持的操作符:`=`、`!=`、`>`、`>=`、`<`、`<=`

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