diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-21 04:48:57 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-21 04:48:57 +0000 |
| commit | b503cbe3194fd21686335bb05eb48d79f3c6384b (patch) | |
| tree | 2f6dbf0fde397c206fcad541fee7397bdc59288d /src/include/catalog/pg_opclass.h | |
| parent | d594eecde227614b7e5d4e37d99ab20cb6911667 (diff) | |
| download | postgresql-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.h | 6 |
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 */ |
