Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Add append_value_n to GenericByteBuilder, similar to PrimitiveBuilder. This will allow for a performance improvement when allocating the values. Mostly because we can batch allocate the null-mask.
Describe the solution you'd like
Adding the append_value_n API to GenericByteBuilder.
Describe alternatives you've considered
Calling append_value in a loop, which takes a performance hit between 10-20%.
Additional context
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Add
append_value_ntoGenericByteBuilder, similar toPrimitiveBuilder. This will allow for a performance improvement when allocating the values. Mostly because we can batch allocate the null-mask.Describe the solution you'd like
Adding the
append_value_nAPI to GenericByteBuilder.Describe alternatives you've considered
Calling
append_valuein a loop, which takes a performance hit between 10-20%.Additional context