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.
In issue #213, it seems BI tool like Tableau will generates GROUP BY (and probably ORDER BY too) using ordinal.
Take query SELECT age FROM accounts GROUP BY 1 for example, the ordinal 1 here is referring to field age. So actually this query is Equivalent to SELECT age FROM accounts GROUP BY age. Although it's said this is not a good practice, we need to support this for integration with BI tool.
In issue #213, it seems BI tool like Tableau will generates
GROUP BY
(and probablyORDER BY
too) using ordinal.Take query
SELECT age FROM accounts GROUP BY 1
for example, the ordinal 1 here is referring to fieldage
. So actually this query is Equivalent toSELECT age FROM accounts GROUP BY age
. Although it's said this is not a good practice, we need to support this for integration with BI tool.Reference:
The text was updated successfully, but these errors were encountered: