File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
main/java/org/elasticsearch/xpack/esql/action
test/java/org/elasticsearch/xpack/esql Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -375,9 +375,6 @@ tests:
375375- class : org.elasticsearch.xpack.enrich.EnrichIT
376376 method : testEnrichSpecialTypes
377377 issue : https://github.com/elastic/elasticsearch/issues/114773
378- - class : org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
379- method : test {string.ReverseGraphemeClusters}
380- issue : https://github.com/elastic/elasticsearch/issues/114560
381378- class : org.elasticsearch.license.LicensingTests
382379 issue : https://github.com/elastic/elasticsearch/issues/114865
383380- class : org.elasticsearch.xpack.enrich.EnrichIT
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public enum Cap {
3636 * Support for reversing whole grapheme clusters. This is not supported
3737 * on JDK versions less than 20.
3838 */
39- FN_REVERSE_GRAPHEME_CLUSTERS (Runtime .version ().feature () < 20 ),
39+ FN_REVERSE_GRAPHEME_CLUSTERS (Runtime .version ().feature () >= 20 ),
4040
4141 /**
4242 * Support for function {@code CBRT}. Done in #108574.
Original file line number Diff line number Diff line change @@ -259,6 +259,10 @@ public final void test() throws Throwable {
259259 testCase .requiredCapabilities ,
260260 everyItem (in (EsqlCapabilities .capabilities (true )))
261261 );
262+ assumeTrue (
263+ "Capability is not included in the enabled list capabilities on a snapshot build. Spelling mistake?" ,
264+ EsqlCapabilities .capabilities (false ).containsAll (testCase .requiredCapabilities )
265+ );
262266 } else {
263267 for (EsqlCapabilities .Cap c : EsqlCapabilities .Cap .values ()) {
264268 if (false == c .isEnabled ()) {
You can’t perform that action at this time.
0 commit comments