summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/select_yql/from_select_table.yql
blob: 397561933cf35e2d5ebb203679cb4e2bf35ce472 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* dqfile can not - missing langver support */
/* hybridfile can not - missing langver support */
PRAGMA YqlSelect = 'force';

SELECT
    key,
    subkey,
    value
FROM (
    SELECT
        *
    FROM
        plato.Input
);