Moemenmohamed24 opened a new pull request, #50584: URL: https://github.com/apache/arrow/pull/50584
# Summary This PR fixes an inconsistency between RunEndEncodedBuilder::AppendScalar and RunEndEncodedBuilder::AppendScalars. While AppendScalar already supports appending regular value scalars directly, AppendScalars did not support the same scalar form. # Related Issue Fixes #50508 # Changes Updated `RunEndEncodedBuilder::AppendScalars` to process each scalar through the existing `AppendScalar` implementation with n_repeats = 1. This allows `AppendScalars` to support regular `value scalars`, such as `float32`, consistently with `AppendScalar`, while preserving support for `RunEndEncodedScalar values`. Added tests covering both regular value scalars and `RunEndEncodedScalar values`. -- 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]
