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
from df =[{a=1,b=3},{a=9,b=4},{a=1,b=3},{a=2,b=3},]group a (
group df.*(
take 1))
SQL output
WITH table_0 AS (
SELECT1AS a,
3AS b
UNION
ALL
SELECT9AS a,
4AS b
UNION
ALL
SELECT1AS a,
3AS b
UNION
ALL
SELECT2AS a,
3AS b
),
table_1 AS (
SELECT
a,
b,
ROW_NUMBER() OVER (PARTITION BY a) AS _expr_0
FROM
table_0
)
SELECT
a,
b
FROM
table_1
WHERE
_expr_0 <=1-- Generated by PRQL compiler version:0.11.1 (https://prql-lang.org)
Expected SQL output
No response
MVCE confirmation
Minimal example
New issue
Anything else?
No response
The text was updated successfully, but these errors were encountered:
What happened?
A compiler bug was encountered. Please copy/paste the PRQL query into a new report at:
https://github.com/PRQL/prql/issues/new?template=bug_report.yaml
PRQL input
SQL output
Expected SQL output
No response
MVCE confirmation
Anything else?
No response
The text was updated successfully, but these errors were encountered: