Skip to content

ESQL: fix bwc test by adding min required version #129204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2025
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 @@ -320,7 +320,7 @@ emp_no:integer | job_positions:keyword
10025 | Accountant
;

likeWithUpperTurnedInsensitive
likeWithUpperTurnedInsensitive#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -332,7 +332,7 @@ emp_no:integer |first_name:keyword
10055 |Georgy
;

likeWithLowerTurnedInsensitive
likeWithLowerTurnedInsensitive#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -344,7 +344,7 @@ emp_no:integer |first_name:keyword
10055 |Georgy
;

likeWithLowerConflictingFolded
likeWithLowerConflictingFolded#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -354,7 +354,7 @@ FROM employees
emp_no:integer |first_name:keyword
;

likeWithLowerTurnedInsensitiveNotPushedDown
likeWithLowerTurnedInsensitiveNotPushedDown#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -366,7 +366,7 @@ emp_no:integer |first_name:keyword
10055 |Georgy
;

rlikeWithUpperTurnedInsensitive
rlikeWithUpperTurnedInsensitive#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -378,7 +378,7 @@ emp_no:integer |first_name:keyword
10055 |Georgy
;

rlikeWithLowerTurnedInsensitive
rlikeWithLowerTurnedInsensitive#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -390,7 +390,7 @@ emp_no:integer |first_name:keyword
10055 |Georgy
;

rlikeWithLowerConflictingFolded
rlikeWithLowerConflictingFolded#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -400,7 +400,7 @@ FROM employees
emp_no:integer |first_name:keyword
;

negatedRLikeWithLowerTurnedInsensitive
negatedRLikeWithLowerTurnedInsensitive#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand All @@ -412,7 +412,7 @@ c:long
88
;

rlikeWithLowerTurnedInsensitiveNotPushedDown
rlikeWithLowerTurnedInsensitiveNotPushedDown#[skip:-8.12.99]
FROM employees
| KEEP emp_no, first_name
| SORT emp_no
Expand Down