Skip to content

Commit 03aa85f

Browse files
committed
Remove unrelated changes
1 parent 77c1084 commit 03aa85f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ public void testComplexFieldNames() throws IOException {
10971097
}
10981098

10991099
/**
1100-
* INLINE STATS <strong>can</strong> group on {@code NOW()}. It's a little silly, but
1100+
* INLINESTATS <strong>can</strong> group on {@code NOW()}. It's a little silly, but
11011101
* doing something like {@code DATE_TRUNC(1 YEAR, NOW() - 1970-01-01T00:00:00Z)} is
11021102
* much more sensible. But just grouping on {@code NOW()} is enough to test this.
11031103
* <p>
@@ -1107,11 +1107,11 @@ public void testComplexFieldNames() throws IOException {
11071107
*/
11081108
@AwaitsFix(bugUrl = "Disabled temporarily until JOIN implementation is completed")
11091109
public void testInlineStatsNow() throws IOException {
1110-
assumeTrue("INLINE STATS only available on snapshots", Build.current().isSnapshot());
1110+
assumeTrue("INLINESTATS only available on snapshots", Build.current().isSnapshot());
11111111
indexTimestampData(1);
11121112

11131113
RequestObjectBuilder builder = requestObjectBuilder().query(
1114-
fromIndex() + " | EVAL now=NOW() | INLINE STATS AVG(value) BY now | SORT value ASC"
1114+
fromIndex() + " | EVAL now=NOW() | INLINESTATS AVG(value) BY now | SORT value ASC"
11151115
);
11161116
Map<String, Object> result = runEsql(builder);
11171117
ListMatcher values = matchesList();

0 commit comments

Comments
 (0)