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.
When using ODBC driver with other softwares, queries might be transformed. For example SHOW TABLES LIKE % in Tableau becomes
SELECT*FROM (
SHOW TABLES LIKE %
) `Custom SQL Query`LIMIT1
Is your feature request related to a problem? Please describe.
When using ODBC driver with other softwares, queries might be transformed. For example
SHOW TABLES LIKE %
in Tableau becomesAnd it is not currently supported
Describe the solution you'd like
https://github.com/opensearch-project/sql/blob/3fd8ebf78eeab6dbe8416d697434a21485dd95b9/sql/src/main/antlr/OpenSearchSQLParser.g4#L124-126
Currently subquery can only be
select ...
, add more queries support soSHOW ...
will work in subqueries.Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: