Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ public abstract class GenerativeRestTest extends ESRestTestCase implements Query
"Data too large", // Circuit breaker exceptions eg. https://github.com/elastic/elasticsearch/issues/130072
"optimized incorrectly due to missing references", // https://github.com/elastic/elasticsearch/issues/131509
"long overflow", // https://github.com/elastic/elasticsearch/issues/135759
"can't build page out of released blocks", // https://github.com/elastic/elasticsearch/issues/135679
"cannot be cast to class", // https://github.com/elastic/elasticsearch/issues/133992
"can't find input for", // https://github.com/elastic/elasticsearch/issues/136596
"unexpected byte", // https://github.com/elastic/elasticsearch/issues/136598
"Rule execution limit", // https://github.com/elastic/elasticsearch/issues/136599
"Output has changed from", // https://github.com/elastic/elasticsearch/issues/136797

// Awaiting fixes for correctness
"Expecting at most \\[.*\\] columns, got \\[.*\\]", // https://github.com/elastic/elasticsearch/issues/129561
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.elasticsearch.xpack.esql.generator.command.pipe.EvalGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.ForkGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.GrokGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.InlineStatsGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.KeepGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.LimitGenerator;
import org.elasticsearch.xpack.esql.generator.command.pipe.LookupJoinGenerator;
Expand Down Expand Up @@ -69,8 +70,7 @@ public class EsqlQueryGenerator {
ForkGenerator.INSTANCE,
GrokGenerator.INSTANCE,
KeepGenerator.INSTANCE,
// awaits fix for https://github.com/elastic/elasticsearch/issues/135679
// InlineStatsGenerator.INSTANCE,
InlineStatsGenerator.INSTANCE,
LimitGenerator.INSTANCE,
LookupJoinGenerator.INSTANCE,
MvExpandGenerator.INSTANCE,
Expand Down