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
This came about as I tried to figure out why large datasets I wrote to parquet and IPC formats seemed corrupted. I'm guessing it's not about file corruption or file format issues ... but rather a row-indexing issue with frame_equal (which I was using to test the datasets read in from the files).
The text was updated successfully, but these errors were encountered:
polars-u64-idx 0.13.38
python 3.10.4
Linux Mint 20.3
Describe your bug.
The
frame_equals
method fails when the number of rows exceeds 2^32 - 1.What are the steps to reproduce the behavior?
Despite the number of rows, I designed this MWE to work using
polars-u64-idx
on any computer with reasonable RAM.However, if we reduce
_nbr_rows
to 2^32 - 1Other Notes:
I've checked that I'm running
polars-u64-idx
The
row_nr
datatype is u64.This came about as I tried to figure out why large datasets I wrote to parquet and IPC formats seemed corrupted. I'm guessing it's not about file corruption or file format issues ... but rather a row-indexing issue with
frame_equal
(which I was using to test the datasets read in from the files).The text was updated successfully, but these errors were encountered: