diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2003-05-15 15:50:21 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2003-05-15 15:50:21 +0000 |
| commit | 2c0556068fc308ed9cce06c85de7e42305d34b86 (patch) | |
| tree | 2c9f5561bdc7b660e2fbc5eb2dd67a24f7a654f8 /src/include/catalog/pg_opclass.h | |
| parent | 2a2f6cfa3983e6834299857c80bc07d32d1e019a (diff) | |
| download | postgresql-2c0556068fc308ed9cce06c85de7e42305d34b86.tar.gz | |
Indexing support for pattern matching operations via separate operator
class when lc_collate is not C.
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 bedd9d72e0..29c92f5ddf 100644 --- a/src/include/catalog/pg_opclass.h +++ b/src/include/catalog/pg_opclass.h @@ -26,7 +26,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_opclass.h,v 1.47 2003/03/10 22:28:19 tgl Exp $ + * $Id: pg_opclass.h,v 1.48 2003/05/15 15:50:19 petere Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -140,5 +140,9 @@ DATA(insert OID = 2003 ( 403 varchar_ops PGNSP PGUID 1043 t 0 )); DATA(insert OID = 2004 ( 405 varchar_ops PGNSP PGUID 1043 t 0 )); DATA(insert OID = 2039 ( 403 timestamp_ops PGNSP PGUID 1114 t 0 )); DATA(insert OID = 2040 ( 405 timestamp_ops PGNSP PGUID 1114 t 0 )); +DATA(insert OID = 2095 ( 403 text_pattern_ops PGNSP PGUID 25 f 0 )); +DATA(insert OID = 2096 ( 403 varchar_pattern_ops PGNSP PGUID 1043 f 0 )); +DATA(insert OID = 2097 ( 403 bpchar_pattern_ops PGNSP PGUID 1042 f 0 )); +DATA(insert OID = 2098 ( 403 name_pattern_ops PGNSP PGUID 19 f 0 )); #endif /* PG_OPCLASS_H */ |
