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 @@ -375,9 +375,6 @@ tests:
- class: org.elasticsearch.xpack.enrich.EnrichIT
method: testEnrichSpecialTypes
issue: https://github.com/elastic/elasticsearch/issues/114773
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
method: test {string.ReverseGraphemeClusters}
issue: https://github.com/elastic/elasticsearch/issues/114560
- class: org.elasticsearch.license.LicensingTests
issue: https://github.com/elastic/elasticsearch/issues/114865
- class: org.elasticsearch.xpack.enrich.EnrichIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public enum Cap {
* Support for reversing whole grapheme clusters. This is not supported
* on JDK versions less than 20.
*/
FN_REVERSE_GRAPHEME_CLUSTERS(Runtime.version().feature() < 20),
FN_REVERSE_GRAPHEME_CLUSTERS(Runtime.version().feature() >= 20),

/**
* Support for function {@code CBRT}. Done in #108574.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ public final void test() throws Throwable {
testCase.requiredCapabilities,
everyItem(in(EsqlCapabilities.capabilities(true)))
);
assumeTrue(
"Capability is not included in the enabled list capabilities on a snapshot build. Spelling mistake?",
EsqlCapabilities.capabilities(false).containsAll(testCase.requiredCapabilities)
);
} else {
for (EsqlCapabilities.Cap c : EsqlCapabilities.Cap.values()) {
if (false == c.isEnabled()) {
Expand Down