blob: c9b185a101012709b7898f20bc7c5e308a4105ef (
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
|
/* postgres can not */
$x = AsTuple(Double("nan"),42);
select $x = $x;
select $x < $x;
select $x <= $x;
select $x > $x;
select $x >= $x;
select $x != $x;
$x = AsStruct(Double("nan") as a,42 as b);
select $x = $x;
select $x != $x;
$x = AsTuple(Nothing(ParseType("Int32?")), 1);
select $x = $x;
select $x < $x;
select $x <= $x;
select $x > $x;
select $x >= $x;
select $x != $x;
$x = Nothing(ParseType("Int32?"));
select $x = $x;
select $x < $x;
select $x <= $x;
select $x > $x;
select $x >= $x;
select $x != $x;
|