Skip to content

EQL: Introduce in~ (case-insensitive in) #68172

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

Closed
costin opened this issue Jan 28, 2021 · 1 comment · Fixed by #68176
Closed

EQL: Introduce in~ (case-insensitive in) #68172

costin opened this issue Jan 28, 2021 · 1 comment · Fixed by #68176
Labels

Comments

@costin
Copy link
Member

costin commented Jan 28, 2021

Introduce in~ to indicate a case insensitive operation.

For example:

process where name in~ ("ExPLorEr.eXe") 

will match name against explorer.exe regardless of case.

process where name in~ ("explorer*") 

will match name against explorer* verbatim.

@elasticmachine elasticmachine added the Team:QL (Deprecated) Meta label for query languages team label Jan 28, 2021
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-ql (Team:QL)

costin added a commit to costin/elasticsearch that referenced this issue Jan 28, 2021
Complement to in, in~ does case-insensitive matching without any
pattern matching - : should be used instead.

process where name in~ ("ExPLorEr.eXe")

will match name against explorer.exe regardless of case.

Fix elastic#68172
costin added a commit that referenced this issue Jan 29, 2021
Complement to in, in~ does case-insensitive matching without any
pattern matching - : should be used instead.

process where name in~ ("ExPLorEr.eXe")

will match name against explorer.exe regardless of case.

Fix #68172
costin added a commit that referenced this issue Jan 29, 2021
Complement to in, in~ does case-insensitive matching without any
pattern matching - : should be used instead.

process where name in~ ("ExPLorEr.eXe")

will match name against explorer.exe regardless of case.

Fix #68172
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants