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

USE plato;

INSERT INTO @tmp (
    a
)
VALUES
    (1)
;

COMMIT;

SELECT
    a
FROM
    @tmp
;