You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,9 @@ public abstract class GenerativeRestTest extends ESRestTestCase {
67
67
// TS-command tests
68
68
"Invalid call to dataType on an unresolved object \\?LASTOVERTIME", // https://github.com/elastic/elasticsearch/issues/134791
69
69
"class org.elasticsearch.compute.data..*Block cannot be cast to class org.elasticsearch.compute.data..*Block", // https://github.com/elastic/elasticsearch/issues/134793
70
-
"Output has changed from \\[.*\\] to \\[.*\\]"// https://github.com/elastic/elasticsearch/issues/134794
70
+
"Output has changed from \\[.*\\] to \\[.*\\]", // https://github.com/elastic/elasticsearch/issues/134794
71
+
"unsupported logical plan node \\[Join\\]", // https://github.com/elastic/elasticsearch/issues/134882
72
+
"To perform a lookup join with index \\[.*\\], it must be a in lookup index mode"// https://github.com/elastic/elasticsearch/issues/134882
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/command/pipe/TimeSeriesStatsGenerator.java
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,13 @@ public CommandDescription generate(
48
48
returnEMPTY_DESCRIPTION;
49
49
}
50
50
51
+
// TODO: Switch back to using nonNull as possible arguments for aggregations. Using the timestamp field in both the bucket as well
52
+
// as as an argument in an aggregation causes all sorts of bizarre errors with confusing messages.
0 commit comments