aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/lambda/lambda_with_tie.sql
blob: 83c9aa7f469c4c21aa13526aeac192aa98866d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* postgres can not */
USE plato;

$func = ($x, $y)->{
  $y, $x = AsTuple($x, $y);
  return $x || "_" || $y;
};

--INSERT INTO Output
SELECT $func(key, subkey) as func FROM Input;