-
Notifications
You must be signed in to change notification settings - Fork 247
Open
Labels
Description
What happened?
Bigquery escapes single quotes with a backslash \ but prql outputs two single quotes ''.
Otherwise it seems highly compatible with bigquery except for this one small thing.
PRQL input
prql target:sql.bigquery
from foo
select {
a = "a'b"
}SQL output
SELECT
'a''b' AS a
FROM
foo
-- Generated by PRQL compiler version:0.13.2 (https://prql-lang.org)Expected SQL output
SELECT
'a\'b' AS a
FROM
fooMVCE confirmation
- Minimal example
- New issue
Anything else?
No response