Skip to content

Commit 3a8881f

Browse files
committed
fix compare
1 parent 76994af commit 3a8881f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iceberg/manifest_reader_internal.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Status ParseDataFile(const std::shared_ptr<StructType>& data_file_schema,
372372
}
373373
if (view_of_file_field->n_children > 0) {
374374
auto view_of_partition = view_of_file_field->children[0];
375-
for (size_t row_idx = 0; row_idx < view_of_partition->length; row_idx++) {
375+
for (int64_t row_idx = 0; row_idx < view_of_partition->length; row_idx++) {
376376
if (ArrowArrayViewIsNull(view_of_partition, row_idx)) {
377377
break;
378378
}

0 commit comments

Comments
 (0)