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
Describe the bug
Support for multiple subqueries seem to lack and results in a RuntimeException. This is an issue with a generated query by Power BI.
Or for query issues:
Run the query: select bool0, ITBL.C2, ITBL.C3 from (select bool0, C1, case when not C1 is null then cast(C1 as integer) else 0 end as C2, case when C1 is null then 0 else 1 end as C3 from (select bool0, bool0 as C1 from calcs ) as ITBL group by bool0, C1 ) as ITBL order by ITBL.C2, ITBL.C3 limit 501
See error RuntimeException
Expected behavior
Additional context
Removing the outer most query works. However, as soon as it is place in an outer query of even just SELECT * FROM (), then it does not work.
The text was updated successfully, but these errors were encountered:
ghost
changed the title
Aliasing with the same alias results in ClassCastException[BUG]
Aliasing with the same alias results in RuntimeException[BUG]
Nov 29, 2021
ghost
changed the title
Aliasing with the same alias results in RuntimeException[BUG]
Lack of support for subqueries results in RuntimeException[BUG]
Dec 17, 2021
Describe the bug
Support for multiple subqueries seem to lack and results in a RuntimeException. This is an issue with a generated query by Power BI.
Or for query issues:
bool0
,ITBL
.C2
,ITBL
.C3
from (selectbool0
,C1
, case when notC1
is null then cast(C1
as integer) else 0 end asC2
, case whenC1
is null then 0 else 1 end asC3
from (selectbool0
,bool0
asC1
fromcalcs
) asITBL
group bybool0
,C1
) asITBL
order byITBL
.C2
,ITBL
.C3
limit 501Expected behavior
Additional context
Removing the outer most query works. However, as soon as it is place in an outer query of even just SELECT * FROM (), then it does not work.
The text was updated successfully, but these errors were encountered: