This is an automated email from the ASF dual-hosted git repository.
leonard 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 d9342f50ff0 [FLINK-32767][docs] Fix table path expression in SHOW
CREATE TABLE usage
d9342f50ff0 is described below
commit d9342f50ff002638dc11fef2b72ffd551e38a2d4
Author: gongzhongqiang <[email protected]>
AuthorDate: Thu Nov 2 16:08:36 2023 +0800
[FLINK-32767][docs] Fix table path expression in SHOW CREATE TABLE usage
This closes #23152.
---
docs/content.zh/docs/dev/table/sql/show.md | 2 +-
docs/content/docs/dev/table/sql/show.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content.zh/docs/dev/table/sql/show.md
b/docs/content.zh/docs/dev/table/sql/show.md
index c6464b70815..ca004ab1930 100644
--- a/docs/content.zh/docs/dev/table/sql/show.md
+++ b/docs/content.zh/docs/dev/table/sql/show.md
@@ -608,7 +608,7 @@ show tables;
## SHOW CREATE TABLE
```sql
-SHOW CREATE TABLE [catalog_name.][db_name.]table_name
+SHOW CREATE TABLE [[catalog_name.]db_name.]table_name
```
展示创建指定表的 create 语句。
diff --git a/docs/content/docs/dev/table/sql/show.md
b/docs/content/docs/dev/table/sql/show.md
index 31002724502..bb5d4af3e2d 100644
--- a/docs/content/docs/dev/table/sql/show.md
+++ b/docs/content/docs/dev/table/sql/show.md
@@ -608,7 +608,7 @@ show tables;
## SHOW CREATE TABLE
```sql
-SHOW CREATE TABLE
+SHOW CREATE TABLE [[catalog_name.]db_name.]table_name
```
Show create table statement for specified table.