Skip to content

Commit d391aab

Browse files
committed
SGA-11414 clippy error fix
1 parent 5013c16 commit d391aab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ast/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7466,10 +7466,10 @@ impl fmt::Display for TypedString {
74667466
write!(f, " {value}")
74677467
}
74687468
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),
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}}}"),
74737473
},
74747474
}
74757475
}

0 commit comments

Comments
 (0)