Skip to content

Commit b6f610f

Browse files
committed
Remove the completion command from under development command.
1 parent 24c9d7a commit b6f610f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ public void testDevelopmentRerank() {
3434
parse("row a = 1 | rerank \"foo\" on title with reranker", "rerank");
3535
}
3636

37-
public void testDevelopmentCompletion() {
38-
parse("row a = 1 | completion concat(\"test\", \"a\") with inferenceId as fieldName", "completion");
39-
}
40-
4137
void parse(String query, String errorMessage) {
4238
ParsingException pe = expectThrows(ParsingException.class, () -> parser().createStatement(query));
4339
assertThat(pe.getMessage(), containsString("mismatched input '" + errorMessage + "'"));

0 commit comments

Comments
 (0)