aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/lineage/union_all_tablerow.sql
blob: c2d3407e9e4eecb85065abc60d1f2ea49f200af9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
INSERT INTO plato.Output
SELECT * FROM (
SELECT
    TableRow() as x
FROM plato.Input
UNION ALL
SELECT
    1 as y
FROM plato.Input
)
flatten columns