We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2ed075 commit e1452bcCopy full SHA for e1452bc
src/ast/dml.rs
@@ -333,15 +333,15 @@ impl Display for CreateTable {
333
write!(
334
f,
335
" ENABLE_SCHEMA_EVOLUTION={}",
336
- is_enabled.to_string().to_uppercase()
+ if is_enabled { "TRUE" } else { "FALSE" }
337
)?;
338
}
339
340
if let Some(is_enabled) = self.change_tracking {
341
342
343
" CHANGE_TRACKING={}",
344
345
346
347
0 commit comments