wuchong commented on a change in pull request #16020:
URL: https://github.com/apache/flink/pull/16020#discussion_r672952687



##########
File path: docs/data/sql_functions.yml
##########
@@ -537,7 +537,11 @@ conditional:
     description: Returns true if all characters in string are digit, otherwise 
false.
   - table: BOOLEAN.?(VALUE1, VALUE2)
     description: Returns VALUE1 if BOOLEAN evaluates to TRUE; returns VALUE2 
otherwise. E.g., (42 > 5).?('A', 'B') returns "A".
-   
+  - sql: GREATEST(value1[, value2]*)
+    description: Returns the greatest value of the list of arguments. Returns 
NULL if any argument is NULL.
+  - sql: LEAST(value1[, value2]*)
+    description: Returns the least value of the list of arguments. Returns 
NULL if any argument is NULL.

Review comment:
       Could you also update `sql_functions_zh.yml`?




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


Reply via email to