liyubin117 commented on code in PR #24555: URL: https://github.com/apache/flink/pull/24555#discussion_r1549296944
########## docs/content/docs/dev/table/sql/show.md: ########## @@ -102,6 +103,22 @@ tEnv.executeSql("SHOW CURRENT CATALOG").print(); // | default_catalog | // +----------------------+ +// create a catalog +tEnv.executeSql("CREATE CATALOG cat2 WITH (...)") Review Comment: done ########## docs/content/docs/dev/table/sql/show.md: ########## @@ -214,6 +231,22 @@ tEnv.executeSql("SHOW CATALOGS").print() // | default_catalog | // +-----------------+ +// create a catalog +tEnv.executeSql("CREATE CATALOG cat2 WITH (...)") + +// show create catalog +tEnv.executeSql("SHOW CREATE CATALOG cat2").print(); Review Comment: done ########## docs/content/docs/dev/table/sql/show.md: ########## @@ -316,6 +349,22 @@ table_env.execute_sql("SHOW CATALOGS").print() # | default_catalog | # +-----------------+ +# create a catalog +table_env.execute_sql("CREATE CATALOG cat2 WITH (...)") + +# show create catalog +table_env.execute_sql("SHOW CREATE CATALOG cat2").print(); Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org