mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-27 17:10:22 -04:00
ES|QL fix StatementParserTests to take into consideration SNAPSHOT (#130098)
This commit is contained in:
parent
49506362cf
commit
78eeeccb48
1 changed files with 1 additions and 1 deletions
|
@ -3176,7 +3176,7 @@ public class StatementParserTests extends AbstractStatementParserTests {
|
|||
}
|
||||
|
||||
public void testInvalidFromPatterns() {
|
||||
var sourceCommands = new String[] { "FROM", "TS" };
|
||||
var sourceCommands = Build.current().isSnapshot() ? new String[] { "FROM", "TS" } : new String[] { "FROM" };
|
||||
var indexIsBlank = "Blank index specified in index pattern";
|
||||
var remoteIsEmpty = "remote part is empty";
|
||||
var invalidDoubleColonUsage = "invalid usage of :: separator";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue