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

SELECT
    a,
    b
FROM (
    VALUES
        (1, '1', 'Ignored'),
        (2, '2', 'Ignored'),
        (3, '3', 'Ignored')
) AS x (
    a,
    b
);