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
Cannot select a column named 'hash' because BigQuery recognizes 'hash' as a function. PRQL does not escape the column name (by adding backticks) nor does it preserve existing backticks, as shown in the example below.
PRQL input
prql target:sql.bigquery
from `some_dataset_id.demo`
select {`hash`}
SQL output
SELECT
hash
FROM`some_dataset_id.demo`-- Generated by PRQL compiler version:0.13.3 (https://prql-lang.org)
Expected SQL output
SELECT`hash`FROM`some_dataset_id.demo`
MVCE confirmation
Minimal example
New issue
Anything else?
No response
The text was updated successfully, but these errors were encountered:
What happened?
Cannot select a column named 'hash' because BigQuery recognizes 'hash' as a function. PRQL does not escape the column name (by adding backticks) nor does it preserve existing backticks, as shown in the example below.
PRQL input
SQL output
Expected SQL output
MVCE confirmation
Anything else?
No response
The text was updated successfully, but these errors were encountered: