Skip to content

Commit 25dd7df

Browse files
committed
cargo fmt
1 parent f3da652 commit 25dd7df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/catalog/glue/src/schema.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ impl SchemaVisitor for GlueSchemaBuilder {
169169
return Err(Error::new(
170170
ErrorKind::FeatureUnsupported,
171171
format!("Conversion from {p:?} is not supported"),
172-
))
172+
));
173173
}
174174
PrimitiveType::Time | PrimitiveType::String | PrimitiveType::Uuid => {
175175
"string".to_string()

crates/catalog/hms/src/schema.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ impl SchemaVisitor for HiveSchemaBuilder {
126126
return Err(Error::new(
127127
ErrorKind::FeatureUnsupported,
128128
format!("Conversion from {p:?} is not supported"),
129-
))
129+
));
130130
}
131131
PrimitiveType::Time | PrimitiveType::String | PrimitiveType::Uuid => {
132132
"string".to_string()

0 commit comments

Comments
 (0)