aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/params/tuple.sql
blob: 783a7336ddae555ffc714ef44d5fc47627230ccb (plain) (blame)
1
2
3
4
5
6
/* syntax version 1 */
declare $x1 as Tuple<String, Int64?>;
declare $x2 as Tuple<String, Int64?>;
$a, $b = $x1;

select $a, $b, $x2.0, $x2.1;