Skip to content

Commit b2b8795

Browse files
committed
2 parents 3989efe + 92be237 commit b2b8795

21 files changed

+2876
-476
lines changed

src/ast/dml.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,8 @@ impl Display for Insert {
505505
self.table_name.to_string()
506506
};
507507

508-
if let Some(action) = self.or {
509-
write!(f, "INSERT OR {action} INTO {table_name} ")?;
508+
if let Some(on_conflict) = self.or {
509+
write!(f, "INSERT {on_conflict} INTO {table_name} ")?;
510510
} else {
511511
write!(
512512
f,

0 commit comments

Comments
 (0)