Skip to content
Merged
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 @@ -96,7 +96,7 @@
import static org.elasticsearch.test.MapMatcher.assertMap;
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.getValuesList;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.APPROXIMATION_V2;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.APPROXIMATION_V3;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.EXPLAIN;
import static org.elasticsearch.xpack.esql.action.EsqlQueryRequest.syncEsqlQueryRequest;
import static org.hamcrest.Matchers.allOf;
Expand Down Expand Up @@ -2522,7 +2522,7 @@ public void testExplainWithLookupJoin() {
*/
public void testExplainWithApproximation() {
assumeTrue("EXPLAIN requires the capability to be enabled", EXPLAIN.isEnabled());
assumeTrue("Approximation requires the capability to be enabled", APPROXIMATION_V2.isEnabled());
assumeTrue("Approximation requires the capability to be enabled", APPROXIMATION_V3.isEnabled());

String indexName = "explain_approximation_test";

Expand Down
Loading