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 5013c16 commit d391aabCopy full SHA for d391aab
src/ast/mod.rs
@@ -7466,10 +7466,10 @@ impl fmt::Display for TypedString {
7466
write!(f, " {value}")
7467
}
7468
true => match data_type {
7469
- DataType::Date => write!(f, "{{d {}}}", value),
7470
- DataType::Time(..) => write!(f, "{{t {}}}", value),
7471
- DataType::Timestamp(..) => write!(f, "{{ts {}}}", value),
7472
- _ => write!(f, "{{? {}}}", value),
+ DataType::Date => write!(f, "{{d {value}}}"),
+ DataType::Time(..) => write!(f, "{{t {value}}}"),
+ DataType::Timestamp(..) => write!(f, "{{ts {value}}}"),
+ _ => write!(f, "{{? {value}}}"),
7473
},
7474
7475
0 commit comments