blob: 0e991c92ae28ab509e22f3a1314020553f416bc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* syntax version 1 */
/* postgres can not */
/* dq can not */
/* dqfile can not */
/* yt can not */
pragma warning("disable", "4510");
pragma warning("disable", "1108");
pragma AnsiInForEmptyOrNullableItemsCollections;
-- a != 2
select YQL::RangeComputeFor(
Struct<a:PgInt4,b:PgText>,
($row) -> (($row.a in (3p,2p,1p)) ?? false),
AsTuple(AsAtom("a"))
);
-- b == 'foo'
select YQL::RangeComputeFor(
Struct<a:PgInt4,b:PgText>,
($row) -> (($row.b in ('foo'p, 'bar'p, 'baz'p)) ?? false),
AsTuple(AsAtom("b"))
);
|