This is an automated email from the ASF dual-hosted git repository. nkruber pushed a commit to branch NicoK-hotfix-docs-create-view in repository https://gitbox.apache.org/repos/asf/flink.git
commit b8eab5f240b1dabeab626fbebde24b6eaddc6e0c Author: Nico Kruber <[email protected]> AuthorDate: Wed Mar 3 13:32:06 2021 +0100 [hotfix][docs] wrong brackets in CREATE VIEW statement --- docs/content/docs/dev/table/sql/create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/dev/table/sql/create.md b/docs/content/docs/dev/table/sql/create.md index 0e7e2e9..9113ba7 100644 --- a/docs/content/docs/dev/table/sql/create.md +++ b/docs/content/docs/dev/table/sql/create.md @@ -559,7 +559,7 @@ The key and value of expression `key1=val1` should both be string literal. ## CREATE VIEW ```sql CREATE [TEMPORARY] VIEW [IF NOT EXISTS] [catalog_name.][db_name.]view_name - [{columnName [, columnName ]* }] [COMMENT view_comment] + [( columnName [, columnName ]* )] [COMMENT view_comment] AS query_expression ```
