Skip to content

Commit 1a1b88d

Browse files
committed
Readding skipped markers as else the test gets run in the backwards compatibility test environment. - not sure how to test it as, I feel like the version should be main on main / dev. Doing the dance for now.
1 parent b4c31b9 commit 1a1b88d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/string.csv-spec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1931,7 +1931,7 @@ l1:integer | l2:integer
19311931
null | 0
19321932
;
19331933

1934-
mvContainsAll#[skip:-9.2.99,reason:new base64 function added in 9.3]
1934+
mvContainsAll#[skip:-9.2.99,reason:new mvContainsall function added in 9.3]
19351935
// tag::mv_contains_all[]
19361936
ROW a = "a", b = ["a", "b", "c"]
19371937
| EVAL a_subset_of_b = mv_contains_all(b, a)
@@ -1944,7 +1944,7 @@ a | [a, b, c] | true
19441944
// end::mv_contains_all-result[]
19451945
;
19461946

1947-
mvContainsAll_bothsides#[skip:-9.2.99,reason:new base64 function added in 9.3]
1947+
mvContainsAll_bothsides#[skip:-9.2.99,reason:new mvContainsall function added in 9.3]
19481948
// tag::mv_contains_all_bothsides[]
19491949
ROW a = ["a","c"], b = ["a", "b", "c"]
19501950
| EVAL a_subset_of_b = mv_contains_all(b, a)
@@ -1957,7 +1957,7 @@ a:keyword | b:keyword | a_subset_of_b:boolean
19571957
// end::mv_contains_all_bothsides-result[]
19581958
;
19591959

1960-
mvContainsAllCombinations#[skip:-9.2.99,reason:new base64 function added in 9.3]
1960+
mvContainsAllCombinations#[skip:-9.2.99,reason:new mvContainsall function added in 9.3]
19611961

19621962
ROW a = "a", b = ["a", "b", "c"], n = null
19631963
| EVAL aa = mv_contains_all(a, a),
@@ -1969,11 +1969,11 @@ ROW a = "a", b = ["a", "b", "c"], n = null
19691969
nn = mv_contains_all(n,n)
19701970
;
19711971

1972-
a:keyword | b:keyword | n:null | aa:boolean | bb:boolean | ab:boolean | ba:boolean | na:boolean | an:boolean | nn:boolean
1972+
a:keyword | b:keyword | n:null | aa:boolean | bb:boolean | ab:boolean | ba:boolean | na:boolean | an:boolean | nn:null
19731973
a | [a, b, c] | null | true | true | false | true | null | null | null
19741974
;
19751975

1976-
mvContainsAll_where#[skip:-9.2.99,reason:new base64 function added in 9.3]
1976+
mvContainsAll_where#[skip:-9.2.99,reason:new mvContainsall function added in 9.3]
19771977
// tag::mv_contains_all_where[]
19781978
FROM airports
19791979
| WHERE mv_contains_all(type, ["major","military"]) AND scalerank == 9

0 commit comments

Comments
 (0)