summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select_yql/from_select.yql
blob: cfe20b27bf7604977f36efca96db9b22ec8822dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
PRAGMA YqlSelect = 'force';

SELECT
    a,
    b
FROM (
    SELECT
        1 AS a,
        2 AS b
);