We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e32af46 commit 3386284Copy full SHA for 3386284
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3176,7 +3176,7 @@ public void testValidJoinPattern() {
3176
}
3177
3178
public void testInvalidFromPatterns() {
3179
- var sourceCommands = new String[] { "FROM", "TS" };
+ var sourceCommands = Build.current().isSnapshot() ? new String[] { "FROM", "TS" } : new String[] { "FROM" };
3180
var indexIsBlank = "Blank index specified in index pattern";
3181
var remoteIsEmpty = "remote part is empty";
3182
var invalidDoubleColonUsage = "invalid usage of :: separator";
0 commit comments