-
-
Notifications
You must be signed in to change notification settings - Fork 679
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
Exists query does not work #2508
Comments
It's odd that ExistsQuery has been implemented, but this particular query pattern does not utilize it. If there's no specific reason behind it, I'd be happy to hook them up. |
Closing this issue. @LebranceBW |
I've submitted issue #2514 and PR #2513 for the newly supported syntax. Could you please take a moment to review them? @fulmicoton |
Describe the bug
QueryParser
, for examplename:*
.Unsupported query: Range query need to target a specific field.
, I assume Fix error message when converting user input exists query into logical ast #2218 is related.Which version of tantivy are you using?
0.22.0
To Reproduce
let query_parser = QueryParser::for_index(&index, vec![ ...your default fields... ])
query_parser.parse_query("name:*")
The text was updated successfully, but these errors were encountered: