aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/compute_range/adjacent_to_point.sql
blob: 15a272bea630afe35769f6af27148e6cc24e4fde (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
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
79
80
81
82
83
84
85
/* syntax version 1 */
/* postgres can not */
/* yt can not */

pragma warning("disable", "4510");

-- [10, 11) -> [10, 10]
select YQL::RangeComputeFor(
  Struct<x:UInt32>,
  ($row) -> ($row.x >= 10 and $row.x < 11),
  AsTuple(AsAtom("x"))
);

-- (10, 11] -> [11, 11]
select YQL::RangeComputeFor(
  Struct<x:UInt32>,
  ($row) -> ($row.x > 10 and $row.x <= 11),
  AsTuple(AsAtom("x"))
);

-- dates
select YQL::RangeComputeFor(
  Struct<x:Date??>,
  ($row) -> (($row.x > Date("2021-09-08") and $row.x <= Date("2021-09-09")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Date32??>,
  ($row) -> (($row.x > Date("2021-09-08") and $row.x <= Date("2021-09-09")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Date??>,
  ($row) -> (($row.x > Date32("2021-09-08") and $row.x <= Date32("2021-09-09")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Date32??>,
  ($row) -> (($row.x > Date32("-1-12-31") and $row.x <= Date32("1-01-01")) ?? false),
  AsTuple(AsAtom("x"))
);

-- datetimes
select YQL::RangeComputeFor(
  Struct<x:Datetime?>,
  ($row) -> (($row.x > Datetime("2021-09-09T12:00:00Z") and $row.x <= Datetime("2021-09-09T12:00:01Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Datetime64?>,
  ($row) -> (($row.x > Datetime("2021-09-09T12:00:00Z") and $row.x <= Datetime("2021-09-09T12:00:01Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Datetime?>,
  ($row) -> (($row.x > Datetime64("2021-09-09T12:00:00Z") and $row.x <= Datetime64("2021-09-09T12:00:01Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Datetime64?>,
  ($row) -> (($row.x > Datetime64("-1-12-31T23:59:59Z") and $row.x <= Datetime64("1-01-01T00:00:00Z")) ?? false),
  AsTuple(AsAtom("x"))
);

-- timestamps
select YQL::RangeComputeFor(
  Struct<x:Timestamp??>,
  ($row) -> (($row.x > Timestamp("2021-09-09T12:00:00.000000Z") and $row.x <= Timestamp("2021-09-09T12:00:00.000001Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Timestamp64??>,
  ($row) -> (($row.x > Timestamp("2021-09-09T12:00:00.000000Z") and $row.x <= Timestamp("2021-09-09T12:00:00.000001Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Timestamp??>,
  ($row) -> (($row.x > Timestamp64("2021-09-09T12:00:00.000000Z") and $row.x <= Timestamp64("2021-09-09T12:00:00.000001Z")) ?? false),
  AsTuple(AsAtom("x"))
)
, YQL::RangeComputeFor(
  Struct<x:Timestamp64??>,
  ($row) -> (($row.x > Timestamp64("-1-12-31T23:59:59.999999Z") and $row.x <= Timestamp64("1-01-01T00:00:00.000000Z")) ?? false),
  AsTuple(AsAtom("x"))
);