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
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,6 @@ tests:
- class: org.elasticsearch.index.engine.RecoverySourcePruneMergePolicyTests
method: testPruneSome
issue: https://github.com/elastic/elasticsearch/issues/118728
- class: org.elasticsearch.xpack.sql.qa.single_node.JdbcDocCsvSpecIT
method: test {docs.testFilterToday}
issue: https://github.com/elastic/elasticsearch/issues/118810
- class: org.elasticsearch.xpack.apmdata.APMYamlTestSuiteIT
method: test {yaml=/20_metrics_ingest/Test metrics-apm.app-* setting event.ingested via ingest pipeline}
issue: https://github.com/elastic/elasticsearch/issues/118875
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import org.elasticsearch.Build;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
import org.elasticsearch.xpack.esql.parser.EsqlParser;
import org.elasticsearch.xpack.esql.parser.ParsingException;

Expand Down Expand Up @@ -1364,6 +1365,7 @@ public void testMetrics() {
}

public void testLookupJoin() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"FROM employees | KEEP languages | RENAME languages AS language_code | LOOKUP JOIN languages_lookup ON language_code",
Set.of("languages", "languages.*", "language_code", "language_code.*"),
Expand All @@ -1372,6 +1374,7 @@ public void testLookupJoin() {
}

public void testLookupJoinKeep() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM employees
Expand All @@ -1385,6 +1388,7 @@ public void testLookupJoinKeep() {
}

public void testLookupJoinKeepWildcard() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM employees
Expand All @@ -1398,6 +1402,7 @@ public void testLookupJoinKeepWildcard() {
}

public void testMultiLookupJoin() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1410,6 +1415,7 @@ public void testMultiLookupJoin() {
}

public void testMultiLookupJoinKeepBefore() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1423,6 +1429,7 @@ public void testMultiLookupJoinKeepBefore() {
}

public void testMultiLookupJoinKeepBetween() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1447,6 +1454,7 @@ public void testMultiLookupJoinKeepBetween() {
}

public void testMultiLookupJoinKeepAfter() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1473,6 +1481,7 @@ public void testMultiLookupJoinKeepAfter() {
}

public void testMultiLookupJoinKeepAfterWildcard() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1486,6 +1495,7 @@ public void testMultiLookupJoinKeepAfterWildcard() {
}

public void testMultiLookupJoinSameIndex() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1499,6 +1509,7 @@ public void testMultiLookupJoinSameIndex() {
}

public void testMultiLookupJoinSameIndexKeepBefore() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1513,6 +1524,7 @@ public void testMultiLookupJoinSameIndexKeepBefore() {
}

public void testMultiLookupJoinSameIndexKeepBetween() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand All @@ -1538,6 +1550,7 @@ public void testMultiLookupJoinSameIndexKeepBetween() {
}

public void testMultiLookupJoinSameIndexKeepAfter() {
assumeTrue("LOOKUP JOIN available as snapshot only", EsqlCapabilities.Cap.JOIN_LOOKUP_V7.isEnabled());
assertFieldNames(
"""
FROM sample_data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3353,7 +3353,7 @@ Alejandro
Amabile
Anoosh
Basil
Bojan
Brendon
// end::filterToday
;

Expand Down