File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments