Dandandan opened a new issue, #9378: URL: https://github.com/apache/arrow-rs/issues/9378
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** `from_bitwise_binary_op` Can be slow when the * buffer is not 64-bit aligned * offset is not a multiple of 8 (byte aligned) or 64 (64-bit aligned) **Describe the solution you'd like** Implement the same optimizations as in https://github.com/apache/arrow-rs/pull/9297 * Align to 8 bytes * Don't try to return a buffer with `bit_offset` 0 but round it to a multiple of 64 * Use `chunk_exact` for the fallback path **Describe alternatives you've considered** **Additional context** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
