summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/insert/select_subquery.yql
blob: 08015031cc04f0922f531e89d6942b25e394f9ad (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
use plato;

$a = (select key from Input order by key limit 1);

insert into Output (key) select $a;