-
Notifications
You must be signed in to change notification settings - Fork 139
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
Support match_bool_prefix function in SQL/PPL query engine #187
Comments
Closed
6 tasks
forestmvey
referenced
this issue
in Bit-Quill/opensearch-project-sql
May 27, 2022
…nsearch-project-sql into dev-match_bool_prefix-2#187
forestmvey
referenced
this issue
in Bit-Quill/opensearch-project-sql
Jun 1, 2022
6 tasks
forestmvey
referenced
this issue
in Bit-Quill/opensearch-project-sql
Jun 6, 2022
match_bool_prefix #187
MaxKsyunz
referenced
this issue
in Bit-Quill/opensearch-project-sql
Jun 18, 2022
…efix-#187 # Conflicts: # core/src/main/java/org/opensearch/sql/expression/DSL.java # core/src/main/java/org/opensearch/sql/expression/function/OpenSearchFunctions.java # docs/user/dql/functions.rst # opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilder.java # ppl/src/main/antlr/OpenSearchPPLLexer.g4 # sql/src/main/antlr/OpenSearchSQLParser.g4
MaxKsyunz
referenced
this issue
in Bit-Quill/opensearch-project-sql
Jun 23, 2022
…efix-#187 Signed-off-by: MaxKsyunz <maxk@bitquilltech.com>
joshuali925
pushed a commit
that referenced
this issue
Jun 27, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related design is presented in issue #182
Todo list
match_bool_prefix
functionality by pushing it down to the search enginematch_bool_prefix
function in SQL and PPL syntax and parser, including all the available parametersmatch_bool_prefix
Function details
The
match_bool_prefix
function maps to the match bool prefix query in the search engine. This query analyzes its input and constructs a bool query from the terms. Each term except the last is used in a term query. The last term is used in a prefix query.Syntax:
match_phrase_prefix(field_expression, query_expression[, option=<option_value>]*)
Available options:
Sample queries:
The text was updated successfully, but these errors were encountered: