You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/logical-operators/CreateView.md
+23-1
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,26 @@ title: CreateView
4
4
5
5
# CreateView Logical Operator
6
6
7
-
`CreateView` is...FIXME
7
+
`CreateView` is a `BinaryCommand` logical operator that represents [CREATE VIEW AS](../sql/SparkSqlAstBuilder.md#visitCreateView) SQL statement to create a persisted (non-temporary) view.
8
+
9
+
??? note "CreateViewCommand"
10
+
[CreateViewCommand](CreateViewCommand.md) logical operator is used to represent [CREATE TEMPORARY VIEW AS](../sql/SparkSqlAstBuilder.md#visitCreateView) SQL statements.
11
+
12
+
`CreateView` is resolved into [CreateViewCommand](CreateViewCommand.md) logical operator by [ResolveSessionCatalog](../logical-analysis-rules/ResolveSessionCatalog.md) logical analysis rule.
Copy file name to clipboardexpand all lines: docs/sql/SparkSqlAstBuilder.md
+19-11
Original file line number
Diff line number
Diff line change
@@ -113,9 +113,9 @@ Creates a [CatalogStorageFormat](../CatalogStorageFormat.md) with the Hive SerDe
113
113
*`textfile`
114
114
*`avro`
115
115
116
-
### visitCacheTable
116
+
### CACHE TABLE { #visitCacheTable }
117
117
118
-
Creates a [CacheTableCommand](../logical-operators/RunnableCommand.md#CacheTableCommand) logical command for `CACHE LAZY? TABLE [table] (AS? [query])?`
118
+
Creates a [CacheTableCommand](../logical-operators/RunnableCommand.md#CacheTableCommand) logical command for `CACHE [LAZY] TABLE [table] (AS? [query])?`
119
119
120
120
ANTLR labeled alternative: `#cacheTable`
121
121
@@ -125,19 +125,27 @@ Creates a [CreateTable](../logical-operators/CreateTable.md)
125
125
126
126
ANTLR labeled alternative: `#createHiveTable`
127
127
128
-
### visitCreateTable { #visitCreateTable }
128
+
### CREATE TABLE { #visitCreateTable }
129
129
130
-
Creates [CreateTempViewUsing](../logical-operators/CreateTempViewUsing.md) logical operator for `CREATE TEMPORARY VIEW … USING …` or falls back to [AstBuilder](AstBuilder.md#visitCreateTable)
130
+
Creates a [CreateTempViewUsing](../logical-operators/CreateTempViewUsing.md) logical operator for `CREATE TEMPORARY VIEW USING` or falls back to [AstBuilder](AstBuilder.md#visitCreateTable) (to create either a [CreateTableAsSelect](../logical-operators/CreateTableAsSelect.md) or a [CreateTable](../logical-operators/CreateTable.md))
131
+
132
+
```sql
133
+
CREATE [TEMPORARY] [EXTERNAL] TABLE [IF NOT EXISTS] identifierReference
134
+
[(createOrReplaceTableColTypeList)]
135
+
[USING multipartIdentifier]
136
+
createTableClauses
137
+
[[AS] query]
138
+
```
131
139
132
140
ANTLR labeled alternative: `#createTable`
133
141
134
-
### visitCreateView { #visitCreateView }
142
+
### CREATE VIEW AS { #visitCreateView }
135
143
136
144
Creates either a [CreateViewCommand](../logical-operators/CreateViewCommand.md) or a [CreateView](../logical-operators/CreateView.md) logical operator for `CREATE VIEW AS` SQL statement.
137
145
138
146
```sql
139
147
CREATE [OR REPLACE] [[GLOBAL] TEMPORARY] VIEW [IF NOT EXISTS] name
140
-
[(identifierComment (, identifierComment)*)]
148
+
[identifierComment (, identifierComment)*]
141
149
[COMMENT STRING]
142
150
[PARTITIONED ON identifierList]
143
151
[TBLPROPERTIES propertyList]
@@ -146,9 +154,9 @@ AS query
146
154
147
155
ANTLR labeled alternative: `#createView`
148
156
149
-
### visitCreateTempViewUsing
157
+
### CREATE TEMPORARY VIEW USING { #visitCreateTempViewUsing }
150
158
151
-
Creates a [CreateTempViewUsing](../logical-operators/CreateTempViewUsing.md) for `CREATE TEMPORARY VIEW … USING`
159
+
Creates a [CreateTempViewUsing](../logical-operators/CreateTempViewUsing.md) for `CREATE TEMPORARY VIEW USING` SQL statement
152
160
153
161
ANTLR labeled alternative: `#createTempViewUsing`
154
162
@@ -186,7 +194,7 @@ scala> println(cmd)
186
194
DescribeTableCommand `t1`, false
187
195
```
188
196
189
-
### visitExplain { #visitExplain }
197
+
### EXPLAIN { #visitExplain }
190
198
191
199
Creates an [ExplainCommand](../logical-operators/ExplainCommand.md) logical command for the following:
0 commit comments