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 2021/05/06 08:01:50 UTC

[flink] branch master updated: [FLINK-22581][docs] Keyword CATALOG is missing in sql client doc (#15844)

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 cb4efe6  [FLINK-22581][docs] Keyword CATALOG is missing in sql client doc (#15844)
cb4efe6 is described below

commit cb4efe6b2ad67fe9f155f64d133cc7ddea19333f
Author: Youngwoo Kim <yw...@apache.org>
AuthorDate: Thu May 6 17:01:23 2021 +0900

    [FLINK-22581][docs] Keyword CATALOG is missing in sql client doc (#15844)
---
 docs/content.zh/docs/dev/table/sqlClient.md | 2 +-
 docs/content/docs/dev/table/sqlClient.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/dev/table/sqlClient.md b/docs/content.zh/docs/dev/table/sqlClient.md
index 337339e..8b57c32 100644
--- a/docs/content.zh/docs/dev/table/sqlClient.md
+++ b/docs/content.zh/docs/dev/table/sqlClient.md
@@ -310,7 +310,7 @@ CREATE CATALOG MyCatalog
     'type' = 'hive'
   );
 
-USE MyCatalog;
+USE CATALOG MyCatalog;
 
 -- Define available database
 
diff --git a/docs/content/docs/dev/table/sqlClient.md b/docs/content/docs/dev/table/sqlClient.md
index 13abece..1cb77c9 100644
--- a/docs/content/docs/dev/table/sqlClient.md
+++ b/docs/content/docs/dev/table/sqlClient.md
@@ -316,7 +316,7 @@ CREATE CATALOG MyCatalog
     'type' = 'hive'
   );
 
-USE MyCatalog;
+USE CATALOG MyCatalog;
 
 -- Define available database