-
Notifications
You must be signed in to change notification settings - Fork 141
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
[BUG] SQL describe query with column filter changes response format #650
Comments
When running sql/legacy/src/main/java/org/opensearch/sql/legacy/plugin/RestSQLQueryAction.java Line 106 in 127b662
|
This error comes from the use of keyword as part of the string literal. Do we actually want to "fix" that? Or do we want to leave it as it is, forcing user to add quotes if the string literal includes keywords? |
I think this was caused by fallback into legacy code. Labeling it for planning. |
LIKE
clause in DESCRIBE
statement
Bit-Quill/opensearch-project-sql#154
What is the bug?
The following example uses the opensearch dashboards flights sample data.
The queries I ran are:
DESCRIBE TABLES LIKE opensearch_dashboards_sample_data_flights COLUMNS LIKE tim%
DESCRIBE TABLES LIKE opensearch_dashboards_sample_data_flights COLUMNS LIKE time%
DESCRIBE TABLES LIKE opensearch_dashboards_sample_data_flights COLUMNS LIKE times%
The second one is behaving strangely. The results differ in
date
, while it should betimestamp
integer
,short
The text was updated successfully, but these errors were encountered: