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
"Read up to num_records records from row_group_reader into self."
But if you pass more than the number of rows in the file, you get an error like
thread 'parquet_reader::test_read_records' panicked at services/src/parquet_reader.rs:10:10:
index out of bounds: the len is 66945 but the index is 66945
Since there's no way to determine the number of rows without iterating once, this is a problem.
The text was updated successfully, but these errors were encountered:
Your sample:
The docs state
"Read up to num_records records from row_group_reader into self."
But if you pass more than the number of rows in the file, you get an error like
Since there's no way to determine the number of rows without iterating once, this is a problem.
The text was updated successfully, but these errors were encountered: