aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/binding/compact_named_exprs.sql
blob: a6f77687df8b39ef2bfcfea082a64974ddd7212c (plain) (blame)
1
2
3
4
5
6
7
8
/* yt can not */
pragma CompactNamedExprs;

$foo = 1+2;
$a, $b = AsTuple(1+3, 2+5);
$l = ($x) -> ($x + $foo);

select $foo, $a, $b, $l(123);