summaryrefslogtreecommitdiff
path: root/contrib/intarray
diff options
context:
space:
mode:
authorTom Lane2001-09-30 16:15:59 +0000
committerTom Lane2001-09-30 16:15:59 +0000
commit5798ccc4a64a564935cf96c1bfa6d64e7e77f19d (patch)
tree0eea7f8869d7e4a4b871306ab568c99cba308370 /contrib/intarray
parent14d330b5b6063cadcb3291cd71606b9e1922c506 (diff)
Update required due to recent changes in FigureColname.
Diffstat (limited to 'contrib/intarray')
-rw-r--r--contrib/intarray/expected/_int.out108
1 files changed, 54 insertions, 54 deletions
diff --git a/contrib/intarray/expected/_int.out b/contrib/intarray/expected/_int.out
index b56d4e1b44..d1b440f5a9 100644
--- a/contrib/intarray/expected/_int.out
+++ b/contrib/intarray/expected/_int.out
@@ -5,223 +5,223 @@
\set ECHO none
--test query_int
select '1'::query_int;
- ?column?
-----------
+ query_int
+-----------
1
(1 row)
select ' 1'::query_int;
- ?column?
-----------
+ query_int
+-----------
1
(1 row)
select '1 '::query_int;
- ?column?
-----------
+ query_int
+-----------
1
(1 row)
select ' 1 '::query_int;
- ?column?
-----------
+ query_int
+-----------
1
(1 row)
select ' ! 1 '::query_int;
- ?column?
-----------
+ query_int
+-----------
!1
(1 row)
select '!1'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1
(1 row)
select '1|2'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 | 2
(1 row)
select '1|!2'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 | !2
(1 row)
select '!1|2'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1 | 2
(1 row)
select '!1|!2'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1 | !2
(1 row)
select '!(!1|!2)'::query_int;
- ?column?
+ query_int
--------------
!( !1 | !2 )
(1 row)
select '!(!1|2)'::query_int;
- ?column?
+ query_int
-------------
!( !1 | 2 )
(1 row)
select '!(1|!2)'::query_int;
- ?column?
+ query_int
-------------
!( 1 | !2 )
(1 row)
select '!(1|2)'::query_int;
- ?column?
+ query_int
------------
!( 1 | 2 )
(1 row)
select '1&2'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 & 2
(1 row)
select '!1&2'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1 & 2
(1 row)
select '1&!2'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 & !2
(1 row)
select '!1&!2'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1 & !2
(1 row)
select '(1&2)'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 & 2
(1 row)
select '1&(2)'::query_int;
- ?column?
-----------
+ query_int
+-----------
1 & 2
(1 row)
select '!(1)&2'::query_int;
- ?column?
-----------
+ query_int
+-----------
!1 & 2
(1 row)
select '!(1&2)'::query_int;
- ?column?
+ query_int
------------
!( 1 & 2 )
(1 row)
select '1|2&3'::query_int;
- ?column?
+ query_int
-----------
1 | 2 & 3
(1 row)
select '1|(2&3)'::query_int;
- ?column?
+ query_int
-----------
1 | 2 & 3
(1 row)
select '(1|2)&3'::query_int;
- ?column?
+ query_int
---------------
( 1 | 2 ) & 3
(1 row)
select '1|2&!3'::query_int;
- ?column?
+ query_int
------------
1 | 2 & !3
(1 row)
select '1|!2&3'::query_int;
- ?column?
+ query_int
------------
1 | !2 & 3
(1 row)
select '!1|2&3'::query_int;
- ?column?
+ query_int
------------
!1 | 2 & 3
(1 row)
select '!1|(2&3)'::query_int;
- ?column?
+ query_int
------------
!1 | 2 & 3
(1 row)
select '!(1|2)&3'::query_int;
- ?column?
+ query_int
----------------
!( 1 | 2 ) & 3
(1 row)
select '(!1|2)&3'::query_int;
- ?column?
+ query_int
----------------
( !1 | 2 ) & 3
(1 row)
select '1|(2|(4|(5|6)))'::query_int;
- ?column?
+ query_int
-------------------------------
1 | ( 2 | ( 4 | ( 5 | 6 ) ) )
(1 row)
select '1|2|4|5|6'::query_int;
- ?column?
+ query_int
-------------------------------
( ( ( 1 | 2 ) | 4 ) | 5 ) | 6
(1 row)
select '1&(2&(4&(5&6)))'::query_int;
- ?column?
+ query_int
-------------------
1 & 2 & 4 & 5 & 6
(1 row)
select '1&2&4&5&6'::query_int;
- ?column?
+ query_int
-------------------
1 & 2 & 4 & 5 & 6
(1 row)
select '1&(2&(4&(5|6)))'::query_int;
- ?column?
+ query_int
-----------------------
1 & 2 & 4 & ( 5 | 6 )
(1 row)
select '1&(2&(4&(5|!6)))'::query_int;
- ?column?
+ query_int
------------------------
1 & 2 & 4 & ( 5 | !6 )
(1 row)