aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/lambda/lambda_with_tie_bad_count_fail.sql
blob: b71fe0297675afad6a85eb806fbe628b6d1993bc (plain) (blame)
1
2
3
4
5
6
7
8
/* custom error:Expected tuple type of size: 2, but got: 3*/
$func = ($x, $y)->{
  $y, $x = AsTuple($x, $y, $x);
  return $x || "_" || $y;
};

SELECT $func('foo', 'bar');