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.
The various array builders, provide a finish method which consumes the buffers, resetting the builder in the process.
When implementing a write path it is common to want to be able to "snapshot" a builder into an immutable Array for query, whilst retaining the builder state to allow for subsequent updates.
Describe the solution you'd like
Add a ArrayBuilder::finish_cloned() method that instead of consuming the buffers, clones the values.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The various array builders, provide a finish method which consumes the buffers, resetting the builder in the process.
When implementing a write path it is common to want to be able to "snapshot" a builder into an immutable Array for query, whilst retaining the builder state to allow for subsequent updates.
Describe the solution you'd like
Add a
ArrayBuilder::finish_cloned()
method that instead of consuming the buffers, clones the values.i.e.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: