From: Tom Lane Date: Sun, 30 Sep 2001 16:15:59 +0000 (+0000) Subject: Update required due to recent changes in FigureColname. X-Git-Tag: REL9_0_0~19551 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5798ccc4a64a564935cf96c1bfa6d64e7e77f19d;p=pg-rex%2Fsyncrep.git Update required due to recent changes in FigureColname. --- 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)