liyubin117 commented on code in PR #24555: URL: https://github.com/apache/flink/pull/24555#discussion_r1549296592
########## docs/content.zh/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 ########## docs/content.zh/docs/dev/table/sql/show.md: ########## @@ -411,6 +460,14 @@ table_env.execute_sql("SHOW FULL MODULES").print() Flink SQL> SHOW CATALOGS; default_catalog +Flink SQL> create catalog cat2 WITH (...); +[INFO] Execute statement succeeded. + +Flink SQL> show create catalog cat2; +CREATE CATALOG `cat2` WITH ( + ... +) + 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