Current Behavior
select sum("FACT"."VAL") as "m0" from (SELECT * FROM (VALUES (42, 21, 'Level11'), (62, 31, 'Level22'), (20, 10, 'Level33'), (40, 20, 'Level44'), (60, 30, 'Level55')) AS "t" ("VAL", "VAL1", "L2") union all select L2, VAL, VAL1 from FACTWB) as "FACT"
Expected Behavior
select sum("FACT"."VAL") as "m0" from (SELECT * FROM (VALUES (42, 21, 'Level11'), (62, 31, 'Level22'), (20, 10, 'Level33'), (40, 20, 'Level44'), (60, 30, 'Level55')) AS "t" ("VAL", "VAL1", "L2") union all select VAL, VAL1, L2 from FACTWB) as "FACT"
Steps To Reproduce
No response
Version
0.0.1
Are you interested in contributing a solution yourself?
None
Anything else?
No response