You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let cursor = O::from_usize(cursor_usize).ok_or_else(|| {
@@ -141,16 +141,20 @@ impl<O: OffsetPType> ArrayBuilder for ListBuilder<O> {
141
141
142
142
if !list.is_empty(){
143
143
let last_used_index = self.index_builder.values().last().vortex_expect("there must be at least one index because we just extended a non-zero list of offsets");
144
-
self.value_builder.extend_from_array(&slice(
145
-
list.elements(),
146
-
0,
147
-
last_used_index.as_() - cursor_usize,
148
-
)?)?;
144
+
let sliced_values = slice(list.elements(),0, last_used_index.as_() - cursor_usize)?;
0 commit comments