summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTom Lane2000-08-21 04:48:57 +0000
committerTom Lane2000-08-21 04:48:57 +0000
commitb503cbe3194fd21686335bb05eb48d79f3c6384b (patch)
tree2f6dbf0fde397c206fcad541fee7397bdc59288d /src/test
parentd594eecde227614b7e5d4e37d99ab20cb6911667 (diff)
First pass at integrating BIT and BIT VARYING code from Adriaan Joubert.
Update functions to new-style fmgr, make BIT and VARBIT be binary- equivalent, add entries to allow these types to be btree indexed, correct a few bugs. BIT/VARBIT are now toastable, too. NOTE: initdb forced due to catalog updates.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/opr_sanity.out10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/test/regress/expected/opr_sanity.out b/src/test/regress/expected/opr_sanity.out
index 8b84e833662..f5d2427cfa1 100644
--- a/src/test/regress/expected/opr_sanity.out
+++ b/src/test/regress/expected/opr_sanity.out
@@ -97,7 +97,8 @@ WHERE p1.oid != p2.oid AND
proargtypes | proargtypes
-------------+-------------
25 | 1043
-(1 row)
+ 1560 | 1562
+(2 rows)
SELECT DISTINCT p1.proargtypes[1], p2.proargtypes[1]
FROM pg_proc AS p1, pg_proc AS p2
@@ -108,7 +109,8 @@ WHERE p1.oid != p2.oid AND
(p1.proargtypes[1] < p2.proargtypes[1]);
proargtypes | proargtypes
-------------+-------------
-(0 rows)
+ 1560 | 1562
+(1 row)
SELECT DISTINCT p1.proargtypes[2], p2.proargtypes[2]
FROM pg_proc AS p1, pg_proc AS p2
@@ -480,8 +482,8 @@ WHERE p1.aggtransfn = p2.oid AND
(p2.pronargs = 1 AND p1.aggbasetype = 0)));
oid | aggname | oid | proname
-------+---------+-----+-------------
- 16972 | max | 768 | int4larger
- 16986 | min | 769 | int4smaller
+ 16984 | max | 768 | int4larger
+ 16998 | min | 769 | int4smaller
(2 rows)
-- Cross-check finalfn (if present) against its entry in pg_proc.