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