-
Notifications
You must be signed in to change notification settings - Fork 25.4k
ESQL: Fix and unmute BlockHashTests.test3BytesRefs() #127830
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
Pinging @elastic/es-analytical-engine (Team:Analytics) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks Ivan!
I am a bit puzzled. Looks like changes generated files, but I do not see a change in corresponding |
@idegtiarenko I made the changes here: #127582 Those files are not related to this fix, I just used this PR to avoid creating another PR. Sorry for the confusion! |
# Conflicts: # muted-tests.yml
Fixes elastic#127825 Fixes elastic#127826 After merging elastic#127582, there was a subtle change that made calls to `add(..., IntVectorBlock)` to directly call `add(..., IntVector)`. This triggered a code path in the test, throwing a NPE. Also, updated some autogenerated files that were merged before my other branch, and weren't updated
Fixes elastic#127825 Fixes elastic#127826 After merging elastic#127582, there was a subtle change that made calls to `add(..., IntVectorBlock)` to directly call `add(..., IntVector)`. This triggered a code path in the test, throwing a NPE. Also, updated some autogenerated files that were merged before my other branch, and weren't updated
Fixes #127825
Fixes #127826
After merging #127582, there was a subtle change that made calls to
add(..., IntVectorBlock)
to directly calladd(..., IntVector)
. This triggered a code path in the test, throwing a NPE.Also, updated some autogenerated files that were merged before my other branch, and weren't updated