You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by wa...@apache.org on 2022/01/24 13:34:28 UTC

[hudi] branch asf-site updated: [MINOR] Fix Flink Guide create sql without ', ' (#4672)

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

wangxianghu pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 24f945a  [MINOR] Fix Flink Guide create sql without ',' (#4672)
24f945a is described below

commit 24f945a2812a3a0d9ec458b18506282d27111524
Author: wigennn <54...@users.noreply.github.com>
AuthorDate: Mon Jan 24 21:33:57 2022 +0800

    [MINOR] Fix Flink Guide create sql without ',' (#4672)
    
    [MINOR] Fix the Flink Guide, Streaming Query, create table sql without ','
---
 website/docs/flink-quick-start-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/docs/flink-quick-start-guide.md b/website/docs/flink-quick-start-guide.md
index 323acad..a723b8e 100644
--- a/website/docs/flink-quick-start-guide.md
+++ b/website/docs/flink-quick-start-guide.md
@@ -147,7 +147,7 @@ WITH (
   'path' = '${path}',
   'table.type' = 'MERGE_ON_READ',
   'read.streaming.enabled' = 'true',  -- this option enable the streaming read
-  'read.start-commit' = '20210316134557' -- specifies the start commit instant time
+  'read.start-commit' = '20210316134557', -- specifies the start commit instant time
   'read.streaming.check-interval' = '4' -- specifies the check interval for finding new source commits, default 60s.
 );