aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select/scalar_subquery_with_star.sql
blob: 29e0be19196375df8afcc6af315225aff164702e (plain) (blame)
1
2
3
4
5
6
7
/* postgres can not */
/* syntax version 1 */

$single = (select key from plato.Input);
$all = (select * from $single order by key limit 100);
select $all;