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.
Currently, the string builder uses the list builder:
This requires another child array to be built, which leads to more memory overhead.
Describe the solution you'd like
I want the string builder to use the binary array.
Also I hope there would be some performance improvement in the bench_string. (At least, there should be no performance regression)
Describe alternatives you've considered
We could not do this if there is performance regression.
Additional context
Add any other context or screenshots about the feature request here.
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.
Currently, the string builder uses the list builder:
This requires another child array to be built, which leads to more memory overhead.
Describe the solution you'd like
I want the string builder to use the binary array.
Also I hope there would be some performance improvement in the
bench_string
. (At least, there should be no performance regression)Describe alternatives you've considered
We could not do this if there is performance regression.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: