aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-05 00:25:07 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-05 00:25:07 +0000
commit132e9159eb6ba69d3ed71f6f20a1aef081ab21bd (patch)
tree85cd5fcad5fb44fbafac1eecc3f5cd78c03345bb
parent54f69a954cdc41b76cfbea4fe6c5afd19fafa374 (diff)
downloadpostgresql-132e9159eb6ba69d3ed71f6f20a1aef081ab21bd.tar.gz
postgresql-132e9159eb6ba69d3ed71f6f20a1aef081ab21bd.zip
Fixes:
Someone asked me if the bpchar type could be extended to do case-insensitive regular expression searches. Submitted by: "Alistair G. Crooks" <azcb0@juts.ccc.amdahl.com>
-rw-r--r--src/backend/catalog/pg_operator.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/catalog/pg_operator.h b/src/backend/catalog/pg_operator.h
index 590849e7173..c1ac2601c01 100644
--- a/src/backend/catalog/pg_operator.h
+++ b/src/backend/catalog/pg_operator.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_operator.h,v 1.2 1996/07/15 19:32:33 scrappy Exp $
+ * $Id: pg_operator.h,v 1.3 1996/08/05 00:25:07 scrappy Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -459,6 +459,8 @@ DATA(insert OID = 1230 ( "~*" PGUID 0 b t f 20 25 16 0 1231 0 0 char1
DATA(insert OID = 1231 ( "!~*" PGUID 0 b t f 20 25 16 0 1230 0 0 char16icregexne neqsel neqjoinsel ));
DATA(insert OID = 1232 ( "~*" PGUID 0 b t f 1043 25 16 0 1233 0 0 texticregexeq eqsel eqjoinsel ));
DATA(insert OID = 1233 ( "!~*" PGUID 0 b t f 1043 25 16 0 1232 0 0 texticregexne neqsel neqjoinsel ));
+DATA(insert OID = 1234 ( "~*" PGUID 0 b t f 1042 25 16 0 1235 0 0 texticregexeq eqsel eqjoinsel ));
+DATA(insert OID = 1235 ( "!~*" PGUID 0 b t f 1042 25 16 0 1234 0 0 texticregexne neqsel neqjoinsel ));