File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
storages/fuse/src/operations Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -207,8 +207,8 @@ impl Display for CreateTableStmt {
207
207
}
208
208
match self . table_type {
209
209
TableType :: Normal => { }
210
- TableType :: Transient => write ! ( f, " TRANSIENT " ) ?,
211
- TableType :: Temporary => write ! ( f, " TEMPORARY " ) ?,
210
+ TableType :: Transient => write ! ( f, " TRANSIENT" ) ?,
211
+ TableType :: Temporary => write ! ( f, " TEMPORARY" ) ?,
212
212
} ;
213
213
write ! ( f, " TABLE" ) ?;
214
214
if let CreateOption :: CreateIfNotExists = self . create_option {
Original file line number Diff line number Diff line change @@ -15001,7 +15001,7 @@ AlterPasswordPolicy(
15001
15001
---------- Input ----------
15002
15002
CREATE TEMPORARY TABLE t (a INT COMMENT 'col comment')
15003
15003
---------- Output ---------
15004
- CREATE TEMPORARY TABLE t (a Int32 COMMENT 'col comment')
15004
+ CREATE TEMPORARY TABLE t (a Int32 COMMENT 'col comment')
15005
15005
---------- AST ------------
15006
15006
CreateTable(
15007
15007
CreateTableStmt {
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ impl FuseTable {
172
172
173
173
let cte_name = format ! ( "_change${}" , suffix) ;
174
174
format ! (
175
- "with {cte_name} as materialized \
175
+ "with {cte_name} as \
176
176
( \
177
177
select * \
178
178
from ( \
You can’t perform that action at this time.
0 commit comments