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

sjwiesman 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 9a89e6e  [hotfix][docs] Improve the filesystem connector doc
9a89e6e is described below

commit 9a89e6edf83f8f5ffa50e0f28609f6d06070bb49
Author: zhisheng <[email protected]>
AuthorDate: Mon Dec 7 21:12:03 2020 +0800

    [hotfix][docs] Improve the filesystem connector doc
    
    This closes #14325
---
 docs/dev/table/connectors/filesystem.md    | 2 +-
 docs/dev/table/connectors/filesystem.zh.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/dev/table/connectors/filesystem.md 
b/docs/dev/table/connectors/filesystem.md
index 2b179fc..531ee68 100644
--- a/docs/dev/table/connectors/filesystem.md
+++ b/docs/dev/table/connectors/filesystem.md
@@ -402,7 +402,7 @@ CREATE TABLE fs_table (
 );
 
 -- streaming sql, insert into file system table
-INSERT INTO TABLE fs_table SELECT user_id, order_amount, DATE_FORMAT(log_ts, 
'yyyy-MM-dd'), DATE_FORMAT(log_ts, 'HH') FROM kafka_table;
+INSERT INTO fs_table SELECT user_id, order_amount, DATE_FORMAT(log_ts, 
'yyyy-MM-dd'), DATE_FORMAT(log_ts, 'HH') FROM kafka_table;
 
 -- batch sql, select with partition pruning
 SELECT * FROM fs_table WHERE dt='2020-05-20' and hour='12';
diff --git a/docs/dev/table/connectors/filesystem.zh.md 
b/docs/dev/table/connectors/filesystem.zh.md
index 4a8f69a..f4ffec7 100644
--- a/docs/dev/table/connectors/filesystem.zh.md
+++ b/docs/dev/table/connectors/filesystem.zh.md
@@ -402,7 +402,7 @@ CREATE TABLE fs_table (
 );
 
 -- streaming sql, insert into file system table
-INSERT INTO TABLE fs_table SELECT user_id, order_amount, DATE_FORMAT(log_ts, 
'yyyy-MM-dd'), DATE_FORMAT(log_ts, 'HH') FROM kafka_table;
+INSERT INTO fs_table SELECT user_id, order_amount, DATE_FORMAT(log_ts, 
'yyyy-MM-dd'), DATE_FORMAT(log_ts, 'HH') FROM kafka_table;
 
 -- batch sql, select with partition pruning
 SELECT * FROM fs_table WHERE dt='2020-05-20' and hour='12';

Reply via email to