You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Not related to a problem.
Describe the solution you'd like.
I want to support phrase match query as a special type of text match query (#35922).
The syntex of using phrase match is:
phrase_match(field, 'words to match', slop)
slop is optional and is 0 if not specified.
For exmaple:
Insert ['I like swimming and riding!']
Query: text_match(text, 'swimming riding'), result: ['I like swimming and riding!']
Query: phrase_match(text, 'swimming riding'), result: []
Query: phrase_match(text, 'swimming and riding'), result: ['I like swimming and riding!']
Query: phrase_match(text, 'swimming riding', 1), result: ['I like swimming and riding!']
Query: phrase_match(text, 'riding swimming', 1), result: []
Query: phrase_match(text, 'riding swimming', 2), result: []
Query: phrase_match(text, 'riding swimming', 3), result: ['I like swimming and riding!']
Describe an alternate solution.
No response
Anything else? (Additional Context)
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Not related to a problem.
Describe the solution you'd like.
I want to support phrase match query as a special type of text match query (#35922).
The syntex of using phrase match is:
phrase_match(field, 'words to match', slop)
slop is optional and is 0 if not specified.
For exmaple:
Describe an alternate solution.
No response
Anything else? (Additional Context)
No response
The text was updated successfully, but these errors were encountered: