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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
For now, there is no way to retrieve Writer passed into ArrowWriter back, this means that we have to use Arc(or something similar) to wrap Writer in order to get ownership.
Describe the solution you'd like
Add into_inner method to ArrowWriter, just like parquet2
I need ownership(or static lifetime) since if it's behind a trait object.
FWIW trait objects need not have static lifetimes, but I concede your point that there are situations where a static lifetime is necessary to avoid self-referential structures.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
For now, there is no way to retrieve
Writer
passed intoArrowWriter
back, this means that we have to use Arc(or something similar) to wrapWriter
in order to get ownership.Describe the solution you'd like
Add into_inner method to ArrowWriter, just like parquet2
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: