GH-48610: [Ruby] Add FixedSizeListArray glue#48609
Conversation
When testing ListSliceOptions I noticed that some glue were missing from the Ruby code.
|
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format? or See also: |
|
|
### Rationale for this change When testing ListSliceOptions I noticed that some glue were missing from the Ruby code. ### What changes are included in this PR? This adds the `FixedSizeListArrayBuilder.build` method in Ruby. ### Are these changes tested? Yes. ### Are there any user-facing changes? This makes it easier to create `FixedSizeListArray` objects in Ruby. * GitHub Issue: apache#48610 Authored-by: Sten Larsson <sten@burtcorp.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
|
After merging your PR, Conbench analyzed the 3 benchmarking runs that have been run so far on merge-commit 3049131. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 8 possible false positives for unstable benchmarks that are known to sometimes produce them. |
Rationale for this change
When testing ListSliceOptions I noticed that some glue were missing from the Ruby code.
What changes are included in this PR?
This adds the
FixedSizeListArrayBuilder.buildmethod in Ruby.Are these changes tested?
Yes.
Are there any user-facing changes?
This makes it easier to create
FixedSizeListArrayobjects in Ruby.