summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/materialize/from_literal_select.yql
blob: ef41632124fcff8f10a400af3ff0c88673da7292 (plain) (blame)
1
2
3
4
5
use plato;

-- Materialize a constant expression (no input table).
MATERIALIZE (SELECT 1 AS a, "hello" AS b) INTO $result;
SELECT * FROM $result;