Is your feature request related to a problem or challenge?
When concatenating (||) two Utf8Views, for every row we check two Options and build the NULL bitmap incrementally. It would probably be faster to build the NULL bitmap in bulk, which would mean checking a single bitmap per row instead of examining both Options. Annoyingly, StringViewBuilder doesn't have a way to use a precomputed null bitmap, so we still need to build the null bitmap itself incrementally.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem or challenge?
When concatenating (
||) twoUtf8Views, for every row we check twoOptions and build the NULL bitmap incrementally. It would probably be faster to build the NULL bitmap in bulk, which would mean checking a single bitmap per row instead of examining bothOptions. Annoyingly,StringViewBuilderdoesn't have a way to use a precomputed null bitmap, so we still need to build the null bitmap itself incrementally.Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response