You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by di...@apache.org on 2022/06/28 08:42:44 UTC

[flink] branch master updated: [hotfix][docs] Add a chinese doc of first_value/last_value in the Table API (#20088)

This is an automated email from the ASF dual-hosted git repository.

dianfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new b972e377c1d [hotfix][docs] Add a chinese doc of first_value/last_value in the Table API (#20088)
b972e377c1d is described below

commit b972e377c1d51e108521f0418785aae7efc92350
Author: LuNing (Lucas) Wang <wa...@gmail.com>
AuthorDate: Tue Jun 28 16:42:36 2022 +0800

    [hotfix][docs] Add a chinese doc of first_value/last_value in the Table API (#20088)
---
 docs/data/sql_functions_zh.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/data/sql_functions_zh.yml b/docs/data/sql_functions_zh.yml
index 8fc1e4d663d..a05ff9694ec 100644
--- a/docs/data/sql_functions_zh.yml
+++ b/docs/data/sql_functions_zh.yml
@@ -1074,8 +1074,10 @@ aggregate:
   - sql: LAG(expression [, offset] [, default])
     description: 返回窗口中当前行之前第 offset 行处的表达式值。offset 的默认值为 1,default 的默认值为 `NULL`。
   - sql: FIRST_VALUE(expression)
+    table: FIELD.firstValue
     description: 返回一组有序值中的第一个值。
   - sql: LAST_VALUE(expression)
+    table: FIELD.lastValue
     description: 返回一组有序值中的最后一个值。
   - sql: LISTAGG(expression [, separator])
     description: 连接字符串表达式的值并在它们之间放置分隔符值。字符串末尾不添加分隔符时则分隔符的默认值为“,”。