summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_opclass.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-08-21 04:48:57 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-08-21 04:48:57 +0000
commitb503cbe3194fd21686335bb05eb48d79f3c6384b (patch)
tree2f6dbf0fde397c206fcad541fee7397bdc59288d /src/include/catalog/pg_opclass.h
parentd594eecde227614b7e5d4e37d99ab20cb6911667 (diff)
downloadpostgresql-b503cbe3194fd21686335bb05eb48d79f3c6384b.tar.gz
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/include/catalog/pg_opclass.h')
-rw-r--r--src/include/catalog/pg_opclass.h6
1 files changed, 5 insertions, 1 deletions
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 */