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 Jul 2, 2024. It is now read-only.
Take the following query against the LendingClub data source on demo:
SELECTdescFROM loans
It's rejected with the error:
Expected column definition.
The following version does work:
SELECT"desc"FROM loans
It seems in the first version we parse it as the token descending. The same happens with asc (not that such a column exists...) and all other words which are also part of the general sql syntax...
The text was updated successfully, but these errors were encountered:
Take the following query against the LendingClub data source on demo:
It's rejected with the error:
The following version does work:
It seems in the first version we parse it as the token descending. The same happens with
asc
(not that such a column exists...) and all other words which are also part of the general sql syntax...The text was updated successfully, but these errors were encountered: