Skip to content

Commit e60efa2

Browse files
committed
cargo fmt
1 parent b912f88 commit e60efa2

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

rust/lance/tests/query/primitives.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use arrow_array::{
1010
};
1111
use arrow_schema::DataType;
1212
use lance::Dataset;
13-
use lance::dataset::{InsertBuilder, WriteParams};
1413
use lance::dataset::optimize::{CompactionOptions, compact_files};
14+
use lance::dataset::{InsertBuilder, WriteParams};
1515

1616
use lance::index::DatasetIndexExt;
1717
use lance_datagen::{ArrayGeneratorExt, RowCount, array, gen_batch};
@@ -536,8 +536,7 @@ async fn test_zone_map_null_index_used() {
536536
];
537537
let value_array = Arc::new(StringArray::from(string_values)) as ArrayRef;
538538
let id_array = Arc::new(Int32Array::from((0..10).collect::<Vec<i32>>())) as ArrayRef;
539-
let batch =
540-
RecordBatch::try_from_iter(vec![("id", id_array), ("value", value_array)]).unwrap();
539+
let batch = RecordBatch::try_from_iter(vec![("id", id_array), ("value", value_array)]).unwrap();
541540

542541
let mut ds = InsertBuilder::new("memory://")
543542
.execute(vec![batch])

0 commit comments

Comments
 (0)