Skip to content

Commit

Permalink
chore: fix compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
evenyag committed Dec 27, 2023
1 parent 1ede9b3 commit c5044a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mito2/src/sst/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,9 @@ mod tests {

// write the sst file and get sst info
// sst info contains the parquet metadata, which is converted from FileMetaData
let mut writer =
ParquetWriter::new(file_path, metadata.clone(), source, object_store.clone());
let mut writer = ParquetWriter::new(file_path, metadata.clone(), object_store.clone());
let sst_info = writer
.write_all(&write_opts)
.write_all(source, &write_opts)
.await
.unwrap()
.expect("write_all should return sst info");
Expand Down

0 comments on commit c5044a3

Please sign in to comment.