-
Notifications
You must be signed in to change notification settings - Fork 247
Closed
Labels
bugInvalid compiler output or panicInvalid compiler output or panic
Description
What happened?
I was building a query and found that commenting out a line within a group transform's pipeline caused a compiler error.
- If both transforms are present (
sortandtake) in the query below, the compiler works - If only the
takeis present (commenting out thesort) the compiler works - If only the
sortis present, the compiler's error refers to Compiler Panic with group transforms #3870
This error might be related to other issues, but I figured I should note it here.
PRQL input
from a=TableA
group { a.Col1 } (
sort a.Col2
take 1
)SQL output
N/AExpected SQL output
N/AMVCE confirmation
- Minimal example
- New issue
Anything else?
No response
Metadata
Metadata
Assignees
Labels
bugInvalid compiler output or panicInvalid compiler output or panic