-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-37465: [Go] Add Value method to BooleanBuilder #37459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This is not a MINOR change. Could you open a new issue for this? |
|
|
|
cc @zeroshade |
|
After merging your PR, Conbench analyzed the 5 benchmarking runs that have been run so far on merge-commit d7b4d2d. There was 1 benchmark result indicating a performance regression:
The full Conbench report has more details. It also includes information about possible false positives for unstable benchmarks that are known to sometimes produce them. |
### Rationale for this change Similar to the changes we've made in apache#35744 we need this for the BooleanBuilder too. ### What changes are included in this PR? Adding the method itself and adjusting a test to test both the Value method on the builder and the final array. ### Are these changes tested? Yes ### Are there any user-facing changes? Just an enhancement to get on-par with other builders. * Closes: apache#37465 Authored-by: Matthias Loibl <mail@matthiasloibl.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
### Rationale for this change Similar to the changes we've made in apache#35744 we need this for the BooleanBuilder too. ### What changes are included in this PR? Adding the method itself and adjusting a test to test both the Value method on the builder and the final array. ### Are these changes tested? Yes ### Are there any user-facing changes? Just an enhancement to get on-par with other builders. * Closes: apache#37465 Authored-by: Matthias Loibl <mail@matthiasloibl.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
Rationale for this change
Similar to the changes we've made in #35744 we need this for the BooleanBuilder too.
What changes are included in this PR?
Adding the method itself and adjusting a test to test both the Value method on the builder and the final array.
Are these changes tested?
Yes
Are there any user-facing changes?
Just an enhancement to get on-par with other builders.