Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintBacchus committed Nov 28, 2024
1 parent d3d61fc commit a3eb987
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rust/lance/src/dataset/fragment/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,10 @@ mod tests {
// Uses provided schema. Field ids are correct in fragment metadata.
let data = test_data();
let tmp_dir = tempfile::tempdir().unwrap();
let writer_params = WriteParams { max_rows_per_file: 1, ..Default::default() };
let writer_params = WriteParams {
max_rows_per_file: 1,
..Default::default()
};
let fragments = FragmentCreateBuilder::new(tmp_dir.path().to_str().unwrap())
.write_params(&writer_params)
.write_fragments(data)
Expand Down

0 comments on commit a3eb987

Please sign in to comment.