coral
coral copied to clipboard
Trino SQLs cannot be converted to CoralSqlNode & CoralRelNode representation
Some valid input trino SQLs like:
-
select * from unnest(array[1, 2, 3])
-
select x from unnest(array[1, 2, 3]) t(x)
-
select * from unnest(array[1, 2, 3]) with ordinality
-
SELECT * from default.struct cross join unnest(struct.b) AS t(b1col, b2col)
where table default.struct is defined as -default.struct(a int, b array<struct<b1:string, b2:int>>
cannot be converter to Coral IR representation.