Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yjshen authored and ion-elgreco committed May 6, 2024
1 parent 93783d0 commit cb7e0d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/core/src/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1202,8 +1202,10 @@ mod tests {
"part-00000-28925d3a-bdf2-411e-bca9-b067444cbcb0-c000.snappy.parquet",
"part-00000-7a509247-4f58-4453-9202-51d75dee59af-c000.snappy.parquet",
]));
let expected_num_records: ArrayRef = Arc::new(array::Int64Array::from(vec![None, Some(1)]));
let expected_null_count: ArrayRef = Arc::new(array::Int64Array::from(vec![None, Some(0)]));
let expected_num_records: ArrayRef =
Arc::new(array::Int64Array::from(vec![None, Some(1)]));
let expected_null_count: ArrayRef =
Arc::new(array::Int64Array::from(vec![None, Some(0)]));

let path_column = actions.column(0);
let num_records_column = actions.column(4);
Expand Down

0 comments on commit cb7e0d9

Please sign in to comment.