Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Dec 13, 2024
1 parent 37bb93a commit e077008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/spark-expr/src/schema_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ mod test {
let filename = filename.as_path().as_os_str().to_str().unwrap().to_string();
let file = File::create(&filename)?;
let mut writer = ArrowWriter::try_new(file, Arc::clone(&batch.schema()), None)?;
writer.write(&batch)?;
writer.write(batch)?;
writer.close()?;

let object_store_url = ObjectStoreUrl::local_filesystem();
Expand Down

0 comments on commit e077008

Please sign in to comment.