Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
ESQL: Make blocks ref counted #100408
ESQL: Make blocks ref counted #100408
Changes from 29 commits
9e89137
73ade8f
522a47e
b55fd8a
5844b81
044bf9a
dad012c
d629ca4
f8df502
d304a95
8f3df46
44ab382
f25644d
d84a4ed
0112040
8f8522d
60305b7
9801f1b
b0a05be
7168c12
803d654
57f5977
95466bb
99da217
b61e50e
b33629d
28970ab
46d3044
42a8559
98f6629
92ab31f
2d3aa70
73110c0
061563d
63109c0
be66835
1b7f2ff
c4e906e
0d3d081
4fe6e08
9593102
25794d6
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Can we add an assertion
assert false : ...
to make tests fail hard?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.
Can we add
assert false ..
to make tests fail hard?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.
Hm, I tried that but it makes many tests awkward as we assert in many tests that an
IllegalStateException
is indeed being thrown.I would leave out the
assert false ..
; when the ISE is thrown in tests, IME it is not hard to find where it was thrown , and the often used utilityReleasables.expectNoException
internally doesassert false
as well.