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: Introduce language versioning to REST API #106824
ESQL: Introduce language versioning to REST API #106824
Changes from 25 commits
1f45d65
c4d5a8e
26b9fe6
887759a
da6c0e1
8e6de63
98b816f
d5bef79
f0a2aae
9e97e43
11ba353
a29fc71
85576a7
5920994
a633632
c8c9684
de6304e
be3f255
5b15c30
c6f06db
eb795fb
8a9c0f8
0b5fb1f
962f16b
3b7c031
20118c6
037f1f7
ab3be62
b181c7c
acb2703
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.
Better make this a class similar to
Version
- enum are quite restrictive and impossible to extend.Having a class gives us future extension points - in the worse case we won't use them and the class will be like an enum.
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.
I think we can flip it to a class with constants when we need that. If we can get away with an
enum
for a while I'd prefer that.