1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* syntax version 1 */
$st_many = <|a: "one", b: "two", c: "three", d: "four"|>;
$st_single = <|a: "zero"|>;
$st_empty = <||>;
$tup = AsTuple("first", "second");
$concat = ($item, $state) -> { return $state || $item; };
$start = ($value) -> { return "(" || $value || ")"; };
SELECT
StaticFold($st_many, "->", $concat),
StaticFold($st_single, "->", $concat),
CAST(StaticFold($st_empty, "->", $concat) AS Optional<String>),
StaticFold($tup, "->", $concat);
SELECT
StaticFold1($st_many, $start, $concat),
StaticFold1($st_single, $start, $concat),
CAST(StaticFold1($st_empty, $start, $concat) AS Optional<String>),
StaticFold1($tup, $start, $concat);
--WithOptionalArgs lambda test
$puk = ($row_struct) -> {
RETURN StaticFold(
$row_struct,
0,
($item, $sum?) -> {
RETURN $sum + IF($item IS NULL, 0, 1)
}
)
};
SELECT $puk(Unwrap(CAST(<|one:"8912", two:42|> AS Struct<one: Int64, two:Int64>)));
|