blob: 393796816ffdd0b317e007ce085cb9c43eb17802 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* postgres can not */
$x = 1 + 0;
$y = 2ul + 0ul;
select $x ?? $y;
select $y ?? $x;
select Just($x) ?? $y;
select $y ?? Just($x);
select $x ?? Just($y);
select Just($y) ?? $x;
select Just($x) ?? Just($y);
select Just($y) ?? Just($x);
|