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 d0b3ddc commit 6da4b52Copy full SHA for 6da4b52
src/ast/mod.rs
@@ -7455,10 +7455,10 @@ impl fmt::Display for TypedString {
7455
write!(f, " {value}")
7456
}
7457
true => match data_type {
7458
- DataType::Date => write!(f, "{{d {}}}", value),
7459
- DataType::Time(..) => write!(f, "{{t {}}}", value),
7460
- DataType::Timestamp(..) => write!(f, "{{ts {}}}", value),
7461
- _ => write!(f, "{{? {}}}", value),
+ DataType::Date => write!(f, "{{d {value}}}"),
+ DataType::Time(..) => write!(f, "{{t {value}}}"),
+ DataType::Timestamp(..) => write!(f, "{{ts {value}}}"),
+ _ => write!(f, "{{? {value}}}"),
7462
},
7463
7464
0 commit comments