Skip to content

Commit e1452bc

Browse files
committed
fix compilation
1 parent c2ed075 commit e1452bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ast/dml.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,15 +333,15 @@ impl Display for CreateTable {
333333
write!(
334334
f,
335335
" ENABLE_SCHEMA_EVOLUTION={}",
336-
is_enabled.to_string().to_uppercase()
336+
if is_enabled { "TRUE" } else { "FALSE" }
337337
)?;
338338
}
339339

340340
if let Some(is_enabled) = self.change_tracking {
341341
write!(
342342
f,
343343
" CHANGE_TRACKING={}",
344-
is_enabled.to_string().to_uppercase()
344+
if is_enabled { "TRUE" } else { "FALSE" }
345345
)?;
346346
}
347347

0 commit comments

Comments
 (0)