Skip to content

Commit d9bb81c

Browse files
committed
SGA-11414 clippy error fix
1 parent 64717ca commit d9bb81c

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
@@ -7423,10 +7423,10 @@ impl fmt::Display for TypedString {
74237423
write!(f, " {value}")
74247424
}
74257425
true => match data_type {
7426-
DataType::Date => write!(f, "{{d {}}}", value),
7427-
DataType::Time(..) => write!(f, "{{t {}}}", value),
7428-
DataType::Timestamp(..) => write!(f, "{{ts {}}}", value),
7429-
_ => write!(f, "{{? {}}}", value),
7426+
DataType::Date => write!(f, "{{d {value}}}"),
7427+
DataType::Time(..) => write!(f, "{{t {value}}}"),
7428+
DataType::Timestamp(..) => write!(f, "{{ts {value}}}"),
7429+
_ => write!(f, "{{? {value}}}"),
74307430
},
74317431
}
74327432
}

0 commit comments

Comments
 (0)