You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ja...@apache.org on 2020/07/17 03:58:57 UTC

[flink] branch master updated: [hotfix][docs-zh] Fix invalid links in the page 'dev/table/streaming/match_recognize.zh.md' (#12895)

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

jark 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 6f1b61f  [hotfix][docs-zh] Fix invalid links in the page 'dev/table/streaming/match_recognize.zh.md' (#12895)
6f1b61f is described below

commit 6f1b61fb64cfc84c1df9fe9f1504c8f7a1cc48e5
Author: Roc Marshal <64...@users.noreply.github.com>
AuthorDate: Fri Jul 17 11:57:43 2020 +0800

    [hotfix][docs-zh] Fix invalid links in the page 'dev/table/streaming/match_recognize.zh.md' (#12895)
---
 docs/dev/table/streaming/dynamic_tables.zh.md  | 2 ++
 docs/dev/table/streaming/time_attributes.zh.md | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/docs/dev/table/streaming/dynamic_tables.zh.md b/docs/dev/table/streaming/dynamic_tables.zh.md
index 2906568..e58b3bc 100644
--- a/docs/dev/table/streaming/dynamic_tables.zh.md
+++ b/docs/dev/table/streaming/dynamic_tables.zh.md
@@ -128,6 +128,8 @@ DataStream 上的关系查询
 
 与前面一样,左边显示了输入表 `clicks`。查询每小时持续计算结果并更新结果表。clicks表包含四行带有时间戳(`cTime`)的数据,时间戳在 `12:00:00` 和 `12:59:59` 之间。查询从这个输入计算出两个结果行(每个 `user` 一个),并将它们附加到结果表中。对于 `13:00:00` 和 `13:59:59` 之间的下一个窗口,`clicks` 表包含三行,这将导致另外两行被追加到结果表。随着时间的推移,更多的行被添加到 `click` 中,结果表将被更新。
 
+<a name="update-and-append-queries"></a>
+
 ### 更新和追加查询
 
 虽然这两个示例查询看起来非常相似(都计算分组计数聚合),但它们在一个重要方面不同:
diff --git a/docs/dev/table/streaming/time_attributes.zh.md b/docs/dev/table/streaming/time_attributes.zh.md
index d44a1fa..b877555 100644
--- a/docs/dev/table/streaming/time_attributes.zh.md
+++ b/docs/dev/table/streaming/time_attributes.zh.md
@@ -82,6 +82,8 @@ env.set_stream_time_characteristic(TimeCharacteristic.ProcessingTime)  # default
 </div>
 </div>
 
+<a name="processing-time"></a>
+
 处理时间
 ---------------