Skip to content

Commit c3bd1c8

Browse files
committed
cargo fmt
1 parent d1e4e8c commit c3bd1c8

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • datafusion/datasource-avro/src

datafusion/datasource-avro/src/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ pub fn read_avro_schema_from_reader<R: Read>(
4646
// that are stricter than DataFusion's table schema handling needs for inferred schemas.
4747
// Drop metadata from inferred schemas so runtime batches and inferred table schemas
4848
// compare consistently without requiring strict Avro metadata identity.
49-
Ok(strip_metadata_from_schema(
50-
avro_reader.schema().as_ref(),
51-
))
49+
Ok(strip_metadata_from_schema(avro_reader.schema().as_ref()))
5250
}
5351

5452
fn strip_metadata_from_schema(schema: &Schema) -> Schema {

0 commit comments

Comments
 (0)