blob: 02a5d630fbf0f0ec5844ba7a6c8fa6f39a483d68 (
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}; -- must use '$' for lambda arguments, should be $item
$res = Math::Floor(Math::Pi() * $shift($v));
return $res
};
--INSERT INTO Output
SELECT t.*, $linear(cast(key as uint64), cast(subkey as uint64)) FROM Input as t;
|