tisonkun commented on a change in pull request #13011:
URL: https://github.com/apache/flink/pull/13011#discussion_r604816525
##########
File path: docs/dev/table/sql/show.md
##########
@@ -91,6 +92,20 @@ tEnv.executeSql("SHOW TABLES").print();
// | my_table |
// +------------+
+// create a table
+tEnv.executeSql("CREATE TABLE my_table (...) WITH (...)");
+// show create table my_table
+tEnv.executeSql("SHOW CREATE TABLE my_table").print();
+// +---------------------------+
+// | create table |
+// +---------------------------+
+// | CREATE TABLE `my_table` ( |
+// | ... |
+// | ) WITH ( |
+// | ... |
Review comment:
shall it also prints sensitive options such as jdbc url contains
password when on an external MySQL table?
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]