Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix windows tests
  • Loading branch information
alamb committed Aug 7, 2025
commit f73a7c169ae4b0d1c5c5b5bf9eb5200015a98969
6 changes: 3 additions & 3 deletions parquet/tests/arrow_reader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,9 @@ fn make_uint_batches(start: u8, end: u8) -> RecordBatch {
Field::new("u64", DataType::UInt64, true),
]));
let v8: Vec<u8> = (start..end).collect();
let v16: Vec<u16> = (start as _..end as _).collect();
let v32: Vec<u32> = (start as _..end as _).collect();
let v64: Vec<u64> = (start as _..end as _).collect();
let v16: Vec<u16> = (start as _..end as u16).collect();
let v32: Vec<u32> = (start as _..end as u32).collect();
let v64: Vec<u64> = (start as _..end as u64).collect();
RecordBatch::try_new(
schema,
vec![
Expand Down
Loading