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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* syntax version 1 */
/* postgres can not */
/* dq can not */
/* dqfile can not */
/* yt can not */
pragma warning("disable", "4510");
pragma warning("disable", "1108");
$Input = [(4, 100), (5, 100)];
select YQL::RangeComputeFor(
Struct<
a:Int32?,
b:Int32?,
c:Int32?,
d:Int32?,
e:Int32?,
>,
($row) -> (((
$row.a,
$row.d)
IN $Input) ?? false),
AsTuple(
AsAtom("a"),
AsAtom("b"),
AsAtom("c"),
AsAtom("d"),
)
);
$Input2 = [(30, 20, 88), (31, 21, 99)];
select YQL::RangeComputeFor(
Struct<
a:Int32?,
b:Int32?,
c:Int32?,
d:Int32?,
e:Int32?,
>,
($row) -> ((((
$row.c,
$row.b,
$row.e)
IN $Input2) AND $row.a == 10) ?? false),
AsTuple(
AsAtom("a"),
AsAtom("b"),
AsAtom("c"),
AsAtom("d"),
AsAtom("e"),
)
);
$Input3 = [(20, 10, 30, 99), (21, 10, 31, 88)];
select YQL::RangeComputeFor(
Struct<
a:Int32?,
b:Int32?,
c:Int32?,
d:Int32?,
e:Int32?,
>,
($row) -> ((($row.c = 33 AND $row.d = 44 AND (
$row.b,
$row.a,
$row.b,
$row.e)
IN $Input3)) ?? false),
AsTuple(
AsAtom("a"),
AsAtom("b"),
AsAtom("c"),
AsAtom("d"),
AsAtom("e"),
)
);
|