Skip to content

Commit c0c0ff7

Browse files
bug[vortex-layout]: file_row_number & file_index i64-> u64 in type signature (#3587)
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 75367c5 commit c0c0ff7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vortex-layout/src/layouts/row_id.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use vortex_array::arrays::{ConstantArray, StructArray};
88
use vortex_array::compute::filter;
99
use vortex_array::stats::{Precision, Stat};
1010
use vortex_array::{ArrayRef, IntoArray};
11-
use vortex_dtype::PType::I64;
11+
use vortex_dtype::PType::U64;
1212
use vortex_dtype::{
1313
DType, Field, FieldMask, FieldName, FieldPath, FieldPathSet, Nullability, StructFields,
1414
};
@@ -97,8 +97,8 @@ impl RowIdLayoutReader {
9797
ROW_ID.clone(),
9898
DType::Struct(
9999
Arc::new(StructFields::from_iter([
100-
(FieldName::from("file_row_number"), DType::from(I64)),
101-
("file_index".into(), I64.into()),
100+
(FieldName::from("file_row_number"), DType::from(U64)),
101+
("file_index".into(), U64.into()),
102102
])),
103103
Nullability::NonNullable,
104104
),

0 commit comments

Comments
 (0)