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
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of Polars.
Issue description
When a pl.Binary type Series is pickled and unpickled, the data is lost (all becomes null) and the type is changed to pl.Int32.
This is a particular problem when using multiprocessing (or similar) since when I multiprocess over data with pl.Binary columns, that data is lost when sent to the other processes (via pickle).
Polars version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of Polars.
Issue description
When a
pl.Binary
type Series is pickled and unpickled, the data is lost (all becomesnull
) and the type is changed topl.Int32
.This is a particular problem when using
multiprocessing
(or similar) since when I multiprocess over data withpl.Binary
columns, that data is lost when sent to the other processes (via pickle).This also happens for
dill
.Reproducible example
Expected behavior
There Series data should not change.
Installed versions
The text was updated successfully, but these errors were encountered: