Skip to content

Commit 5806971

Browse files
committed
SGA-11414 clippy error fix
1 parent 236bdaa commit 5806971

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
@@ -7449,10 +7449,10 @@ impl fmt::Display for TypedString {
74497449
write!(f, " {value}")
74507450
}
74517451
true => match data_type {
7452-
DataType::Date => write!(f, "{{d {}}}", value),
7453-
DataType::Time(..) => write!(f, "{{t {}}}", value),
7454-
DataType::Timestamp(..) => write!(f, "{{ts {}}}", value),
7455-
_ => write!(f, "{{? {}}}", value),
7452+
DataType::Date => write!(f, "{{d {value}}}"),
7453+
DataType::Time(..) => write!(f, "{{t {value}}}"),
7454+
DataType::Timestamp(..) => write!(f, "{{ts {value}}}"),
7455+
_ => write!(f, "{{? {value}}}"),
74567456
},
74577457
}
74587458
}

0 commit comments

Comments
 (0)