File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ impl ExtensionBuilder for PostgresQueryBuilder {
1616 write ! ( sql, "{}" , create. name) . unwrap ( ) ;
1717
1818 if let Some ( schema) = create. schema . as_ref ( ) {
19- write ! ( sql, " WITH SCHEMA {}" , schema ) . unwrap ( ) ;
19+ write ! ( sql, " WITH SCHEMA {schema}" ) . unwrap ( ) ;
2020 }
2121
2222 if let Some ( version) = create. version . as_ref ( ) {
23- write ! ( sql, " VERSION {}" , version ) . unwrap ( ) ;
23+ write ! ( sql, " VERSION {version}" ) . unwrap ( ) ;
2424 }
2525
2626 if create. cascade {
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ impl fmt::Display for PgDateTruncUnit {
241241 PgDateTruncUnit :: Century => "century" ,
242242 PgDateTruncUnit :: Millennium => "millennium" ,
243243 } ;
244- write ! ( f, "{}" , text )
244+ write ! ( f, "{text}" )
245245 }
246246}
247247
You can’t perform that action at this time.
0 commit comments