godfreyhe commented on a change in pull request #12502:
URL: https://github.com/apache/flink/pull/12502#discussion_r436441360
##########
File path: docs/dev/table/sql/drop.md
##########
@@ -143,6 +144,22 @@ Dropping a non-empty database triggers an exception.
Enabled by default.
Dropping a non-empty database also drops all associated tables and functions.
+## DROP VIEW
+
+{% highlight sql %}
+DROP [TEMPORARY] VIEW [ IF EXISTS ] view_name
Review comment:
ditto
##########
File path: docs/dev/table/sql/create.md
##########
@@ -351,6 +352,25 @@ The key and value of expression `key1=val1` should both be
string literal.
{% top %}
+## CREATE VIEW
+{% highlight sql %}
+CREATE [TEMPORARY] VIEW [IF NOT EXISTS] view_name
Review comment:
CREATE [TEMPORARY] VIEW [IF NOT EXISTS]
[catalog_name.][db_name.]view_name
##########
File path: docs/dev/table/sql/create.zh.md
##########
@@ -344,6 +345,25 @@ CREATE DATABASE [IF NOT EXISTS] [catalog_name.]db_name
{% top %}
+## CREATE VIEW
+{% highlight sql %}
+CREATE [TEMPORARY] VIEW [IF NOT EXISTS] view_name
Review comment:
ditto
##########
File path: docs/dev/table/sql/drop.zh.md
##########
@@ -143,6 +144,22 @@ DROP DATABASE [IF EXISTS] [catalog_name.]db_name [
(RESTRICT | CASCADE) ]
删除一个非空数据库时,把相关联的表与函数一并删除。
+## DROP VIEW
+
+{% highlight sql %}
+DROP [TEMPORARY] VIEW [ IF EXISTS ] view_name
Review comment:
ditto
----------------------------------------------------------------
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]