-
Notifications
You must be signed in to change notification settings - Fork 25.6k
ESQL: Push more ==s on text fields to lucene
#126641
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
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
5406c66
ESQL: Push more `==`s on text fields to lucene
nik9000 c6bb228
Update docs/changelog/126641.yaml
nik9000 523321a
Merge branch 'main' into esql_push_text_sub
nik9000 a5e2206
Fix off by one
nik9000 db25092
Merge remote-tracking branch 'nik9000/esql_push_text_sub' into esql_p…
nik9000 f5ce702
Merge branch 'main' into esql_push_text_sub
nik9000 9bd4b89
Proper delegate
nik9000 42b7a20
Fix delegate for ignored fields
nik9000 a2455e9
fmt
nik9000 267632b
[CI] Auto commit changes from spotless
254158b
test!
nik9000 f872334
Merge remote-tracking branch 'nik9000/esql_push_text_sub' into esql_p…
nik9000 1b34eb2
[CI] Auto commit changes from spotless
600257a
Explain
nik9000 3910ae9
Merge remote-tracking branch 'nik9000/esql_push_text_sub' into esql_p…
nik9000 885598f
Fix test
nik9000 a6c7596
Merge branch 'main' into esql_push_text_sub
nik9000 c85680a
fixup
nik9000 d76b174
Merge branch 'main' into esql_push_text_sub
nik9000 28c3b5b
Update
nik9000 fb84d6b
Merge branch 'main' into esql_push_text_sub
nik9000 00794c8
Merge branch 'main' into esql_push_text_sub
nik9000 5ddb10c
WIP
nik9000 dc26271
Merge branch 'main' into esql_push_text_sub
nik9000 4c082e9
Move test
nik9000 6f4e5eb
Merge branch 'main' into esql_push_text_sub
nik9000 deab4be
Merge branch 'main' into esql_push_text_sub
nik9000 faa245d
Merge branch 'main' into esql_push_text_sub
nik9000 4a02fe1
Merge remote-tracking branch 'nik9000/esql_push_text_sub' into esql_p…
nik9000 0f9b54f
Revert things we don't need
nik9000 4125263
Merge branch 'main' into esql_push_text_sub
nik9000 ac558f3
Updates
nik9000 5e8430b
Merge branch 'main' into esql_push_text_sub
nik9000 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| pr: 126641 | ||
| summary: Push more `==`s on text fields to lucene | ||
| area: ES|QL | ||
| type: enhancement | ||
| issues: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
x-pack/plugin/esql/qa/testFixtures/src/main/resources/mapping-basic-limited-raw.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| { | ||
| "properties" : { | ||
| "emp_no" : { | ||
| "type" : "integer" | ||
| }, | ||
| "first_name" : { | ||
| "type" : "keyword" | ||
| }, | ||
| "gender" : { | ||
| "type" : "text" | ||
| }, | ||
| "languages" : { | ||
| "type" : "byte" | ||
| }, | ||
| "last_name" : { | ||
| "type" : "keyword" | ||
| }, | ||
| "salary" : { | ||
| "type" : "integer" | ||
| }, | ||
| "_meta_field": { | ||
| "type" : "keyword" | ||
| }, | ||
| "hire_date": { | ||
| "type": "date" | ||
| }, | ||
| "job": { | ||
| "type": "text", | ||
| "fields": { | ||
| "raw": { | ||
| "type": "keyword", | ||
| "ignore_above": 4 | ||
| } | ||
| } | ||
| }, | ||
| "long_noidx": { | ||
| "type": "long", | ||
| "index": false, | ||
| "doc_values": false | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.