-
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 query_string function in SQL/PPL query engine #191
Comments
@joshuali925 Here is a quick demo of the query_string_demo_video.mp4 |
fixed by #675 and Bit-Quill#85 |
@forestmvey The video is really helpful to user. Do we have our channel for all these video? If not, maybe we can put them into doc in https://github.com/opensearch-project/sql/tree/main/docs/presentations |
Updating the documentation with video links to the github issue may be nice to do alongside saving demo videos in this directory you've suggested. AFAIK demo videos have only been attached to the github issues so far. |
Related design is presented in issue #182
Todo list
query_string
functionality by pushing it down to the search enginequery_string
function in SQL and PPL syntax and parser, including all the available parametersquery_string
Function details
The
query_string
function maps to query string used in the search engine. This query returns documents based on a provided query string, using a parser with a strict syntax.Syntax:
query_string([**field_expression** | **field_list**, ] **query_string_expression**[, option=<option_value>]*)
Query string expression syntax:
**query_expression** operator **query_expression**
, where operator includesAND
andOR
Example:
"query_1 AND query_2"
Available options:
Sample query:
The text was updated successfully, but these errors were encountered: