We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3739b commit ac33ce2Copy full SHA for ac33ce2
kernel/src/engine/arrow_utils.rs
@@ -69,6 +69,7 @@ pub(crate) fn make_arrow_error(s: impl Into<String>) -> Error {
69
.with_backtrace()
70
}
71
72
+/// Prepares to enumerate row indexes of rows in a parquet file, accounting for row group skipping.
73
pub(crate) struct RowIndexBuilder {
74
row_group_starting_row_offsets: Vec<Range<i64>>,
75
row_group_ordinals: Option<Vec<usize>>,
kernel/src/engine/default/parquet.rs
@@ -468,7 +468,7 @@ mod tests {
468
metas.push(FileMeta {
469
location: url.clone(),
470
last_modified: meta.last_modified.timestamp(),
471
- size: meta.size.try_into().unwrap(),
+ size: meta.size,
472
});
473
474
0 commit comments