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.
Our own Reader passed into arrow_ipc::reader::FileReader includes statistics, and we need to collect statistics during iterating the reader. Therefore, we need to access the inner reader through arrow_ipc::reader::FileReader.
Describe the solution you'd like
Add get_ref and get_mut methods to ipc readers and writers.
Describe alternatives you've considered
Wrapping our own reader or writer with Arc<Mutex>.
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Our own Reader passed into
arrow_ipc::reader::FileReader
includes statistics, and we need to collect statistics during iterating the reader. Therefore, we need to access the inner reader througharrow_ipc::reader::FileReader
.Describe the solution you'd like
Add
get_ref
andget_mut
methods to ipc readers and writers.Describe alternatives you've considered
Wrapping our own reader or writer with
Arc<Mutex>
.Additional context
The text was updated successfully, but these errors were encountered: