From 3ac500e71fc59de5a6c7d973741a1e0698612e32 Mon Sep 17 00:00:00 2001 From: Andrew Gazelka Date: Thu, 26 Sep 2024 21:33:50 -0700 Subject: [PATCH] Update src/daft-core/src/array/list_array.rs Co-authored-by: Jay Chia <17691182+jaychia@users.noreply.github.com> --- src/daft-core/src/array/list_array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daft-core/src/array/list_array.rs b/src/daft-core/src/array/list_array.rs index 416cad9840..5b0058fbb6 100644 --- a/src/daft-core/src/array/list_array.rs +++ b/src/daft-core/src/array/list_array.rs @@ -13,7 +13,7 @@ pub struct ListArray { pub field: Arc, pub flat_child: Series, - /// Where does each row start + /// Where each row starts and ends. Null rows usually have the same start/end index, but this is not guaranteed. offsets: arrow2::offset::OffsetsBuffer, validity: Option, }