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
The Arrow spec has a "run-end encoded layout" (https://arrow.apache.org/docs/format/Columnar.html#run-end-encoded-layout) but it doesn't appear to be supported in Arrow.jl. Seems fairly straightforward to implement since the run_ends and values arrays are "child arrays" and not buffers, so we could "just" re-use teh existing functionality to represent the values and run-ends.
The text was updated successfully, but these errors were encountered:
The Arrow spec has a "run-end encoded layout" (https://arrow.apache.org/docs/format/Columnar.html#run-end-encoded-layout) but it doesn't appear to be supported in Arrow.jl. Seems fairly straightforward to implement since the
run_ends
andvalues
arrays are "child arrays" and not buffers, so we could "just" re-use teh existing functionality to represent the values and run-ends.The text was updated successfully, but these errors were encountered: