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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
The following query return all the result instead of selected results
POST /_opendistro/_sql/_explain
{
"query" : """
SELECT a.firstname AS my_first, a.lastname AS my_last, a.age AS my_age
FROM (
SELECT firstname, lastname, age
FROM accounts
WHERE age > 30
) AS a
"""
}
The text was updated successfully, but these errors were encountered:
The following query return all the result instead of selected results
The text was updated successfully, but these errors were encountered: