We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4c2bd5 commit c9d3a17Copy full SHA for c9d3a17
src/parseable/staging/reader.rs
@@ -458,7 +458,7 @@ mod tests {
458
let mut batches = Vec::with_capacity(count);
459
460
for batch_num in 1..=count as i32 {
461
- let id_array = Int32Array::from_iter(batch_num * 10..batch_num * 10 + 1);
+ let id_array = Int32Array::from_iter(batch_num * 10..=batch_num * 10 + 1);
462
let name_array = StringArray::from(vec![
463
format!("Name {batch_num}-1"),
464
format!("Name {batch_num}-2"),
0 commit comments