Skip to content

Commit 140927e

Browse files
committed
[FLINK-37121][docs] Fix syntax and examples in create table statement doc
1 parent 1adcf1e commit 140927e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/content.zh/docs/dev/table/sql/create.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,15 @@ Flink SQL> INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE pro
149149
## CREATE TABLE
150150

151151
```text
152-
CREATE TABLE [IF NOT EXISTS] [catalog_name.][db_name.]table_name
152+
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] [catalog_name.][db_name.]table_name
153153
(
154154
{ <physical_column_definition> | <metadata_column_definition> | <computed_column_definition> }[ , ...n]
155155
[ <watermark_definition> ]
156156
[ <table_constraint> ][ , ...n]
157157
)
158158
[COMMENT table_comment]
159-
[PARTITIONED BY (partition_column_name1, partition_column_name2, ...)]
160159
[ <distribution> ]
160+
[PARTITIONED BY (partition_column_name1, partition_column_name2, ...)]
161161
WITH (key1=val1, key2=val2, ...)
162162
[ LIKE source_table [( <like_options> )] | AS select_query ]
163163
@@ -288,7 +288,7 @@ CREATE TABLE MyTable (
288288
`timestamp` BIGINT METADATA, -- part of the query-to-sink schema
289289
`offset` BIGINT METADATA VIRTUAL, -- not part of the query-to-sink schema
290290
`user_id` BIGINT,
291-
`name` STRING,
291+
`name` STRING
292292
) WITH (
293293
'connector' = 'kafka'
294294
...
@@ -594,7 +594,7 @@ CREATE TABLE my_ctas_table (
594594
desc STRING,
595595
quantity DOUBLE,
596596
cost AS price * quantity,
597-
WATERMARK FOR order_time AS order_time - INTERVAL '5' SECOND,
597+
WATERMARK FOR order_time AS order_time - INTERVAL '5' SECOND
598598
) WITH (
599599
'connector' = 'kafka',
600600
...

docs/content/docs/dev/table/sql/create.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ Flink SQL> INSERT INTO RubberOrders SELECT product, amount FROM Orders WHERE pro
147147
The following grammar gives an overview about the available syntax:
148148

149149
```text
150-
CREATE TABLE [IF NOT EXISTS] [catalog_name.][db_name.]table_name
150+
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] [catalog_name.][db_name.]table_name
151151
(
152152
{ <physical_column_definition> | <metadata_column_definition> | <computed_column_definition> }[ , ...n]
153153
[ <watermark_definition> ]
154154
[ <table_constraint> ][ , ...n]
155155
)
156156
[COMMENT table_comment]
157-
[PARTITIONED BY (partition_column_name1, partition_column_name2, ...)]
158157
[ <distribution> ]
158+
[PARTITIONED BY (partition_column_name1, partition_column_name2, ...)]
159159
WITH (key1=val1, key2=val2, ...)
160160
[ LIKE source_table [( <like_options> )] | AS select_query ]
161161
@@ -287,7 +287,7 @@ CREATE TABLE MyTable (
287287
`timestamp` BIGINT METADATA, -- part of the query-to-sink schema
288288
`offset` BIGINT METADATA VIRTUAL, -- not part of the query-to-sink schema
289289
`user_id` BIGINT,
290-
`name` STRING,
290+
`name` STRING
291291
) WITH (
292292
'connector' = 'kafka'
293293
...
@@ -594,7 +594,7 @@ CREATE TABLE my_ctas_table (
594594
desc STRING,
595595
quantity DOUBLE,
596596
cost AS price * quantity,
597-
WATERMARK FOR order_time AS order_time - INTERVAL '5' SECOND,
597+
WATERMARK FOR order_time AS order_time - INTERVAL '5' SECOND
598598
) WITH (
599599
'connector' = 'kafka',
600600
...

0 commit comments

Comments
 (0)