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 {
207207 }
208208 match self . table_type {
209209 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" ) ?,
212212 } ;
213213 write ! ( f, " TABLE" ) ?;
214214 if let CreateOption :: CreateIfNotExists = self . create_option {
Original file line number Diff line number Diff line change @@ -15001,7 +15001,7 @@ AlterPasswordPolicy(
1500115001---------- Input ----------
1500215002CREATE TEMPORARY TABLE t (a INT COMMENT 'col comment')
1500315003---------- Output ---------
15004- CREATE TEMPORARY TABLE t (a Int32 COMMENT 'col comment')
15004+ CREATE TEMPORARY TABLE t (a Int32 COMMENT 'col comment')
1500515005---------- AST ------------
1500615006CreateTable(
1500715007 CreateTableStmt {
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ impl FuseTable {
172172
173173 let cte_name = format ! ( "_change${}" , suffix) ;
174174 format ! (
175- "with {cte_name} as materialized \
175+ "with {cte_name} as \
176176 ( \
177177 select * \
178178 from ( \
You can’t perform that action at this time.
0 commit comments