From b503cbe3194fd21686335bb05eb48d79f3c6384b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 21 Aug 2000 04:48:57 +0000 Subject: 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. --- src/include/catalog/pg_opclass.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/include/catalog/pg_opclass.h') diff --git a/src/include/catalog/pg_opclass.h b/src/include/catalog/pg_opclass.h index 277301d77d..47c07f1ce6 100644 --- a/src/include/catalog/pg_opclass.h +++ b/src/include/catalog/pg_opclass.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_opclass.h,v 1.35 2000/07/30 22:13:59 tgl Exp $ + * $Id: pg_opclass.h,v 1.36 2000/08/21 04:48:51 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -119,5 +119,9 @@ DATA(insert OID = 1690 ( bool_ops 16 )); DESCR(""); DATA(insert OID = 1399 ( timetz_ops 1266 )); DESCR(""); +DATA(insert OID = 424 ( bit_ops 1560 )); +DESCR(""); +DATA(insert OID = 425 ( varbit_ops 1562 )); +DESCR(""); #endif /* PG_OPCLASS_H */ -- cgit v1.2.1