Skip to content

Commit 383ee6d

Browse files
committed
wip
Signed-off-by: Alexander Droste <[email protected]>
1 parent f77fa63 commit 383ee6d

File tree

1 file changed

+1
-1
lines changed
  • vortex-array/src/arrays/list/compute

1 file changed

+1
-1
lines changed

vortex-array/src/arrays/list/compute/take.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ mod test {
480480
let elements_array = PrimitiveArray::from_iter(elements).to_array();
481481

482482
let mut offsets = Vec::with_capacity(element_count + 1);
483-
for idx in 0..element_count {
483+
for idx in 0..=element_count {
484484
offsets.push(idx as u64);
485485
}
486486
let offsets_array = PrimitiveArray::from_iter(offsets).to_array();

0 commit comments

Comments
 (0)