summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/materialize/in_action.yql
blob: 7303c26c3102db32f6590f0283c5eac100b8c208 (plain) (blame)
1
2
3
4
5
6
7
8
use plato;

DEFINE ACTION $process() AS
    MATERIALIZE Input INTO $tmp;
    INSERT INTO Output SELECT * FROM $tmp;
END DEFINE;

DO $process();