aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/lambda/lambda_no_dollar_assign.sqlx
blob: 8a59426c1b6d227ee9de7f844a58c1d1a3fc10f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* postgres can not */
USE plato;

$shiftSteps=1;
$linear = ($x, $z)->{
  $v = 10 * $z + $x;
  $shift = ($item) -> {return $item << $shiftSteps};
  res = Math::Floor(Math::Pi() * $shift($v)); -- no '$' in variable, should be $res = ...
  return $res
};

--INSERT INTO Output
SELECT t.*, $linear(cast(key as uint64), cast(subkey as uint64)) FROM Input as t;