-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Remove match command #113383
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
Remove match command #113383
Conversation
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java
Show resolved
Hide resolved
|
Pinging @elastic/es-analytical-engine (Team:Analytics) |
carlosdelest
left a comment
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 ✂️
ChrisHegarty
left a comment
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
| // TODO Keep adding tests for all unsupported commands | ||
| } | ||
|
|
||
| private void assertMatchCommand(String lineAndColumn, String command, String query) { |
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.
If there is no test besides testMatchCommand calls assertMatchCommand, it can also be removed.
fang-xing-esql
left a comment
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, just wait for CI to be cleared, thank you!
|
@elasticmachine run elasticsearch-ci/release-tests |
|
For the release-tests, the failures are related to #113496 which don't have to do with the changes we have here. |
💚 Backport successful
|
* Remove match command * Remove assertMatchCommand * Remove unused import
We decided to replace the
matchcommand with theqstrfunction (added in #112590)