From: Bruce Momjian Date: Thu, 22 Oct 1998 05:29:24 +0000 (+0000) Subject: Fix indexing for INET / CIDR. X-Git-Tag: REL9_0_0~26295 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7787d75d78172e48e8ca6b9ee2a28fe4cedb9372;p=pg-rex%2Fsyncrep.git Fix indexing for INET / CIDR. --- diff --git a/src/include/catalog/pg_amop.h b/src/include/catalog/pg_amop.h index 140eaa3b39..af57116e1a 100644 --- a/src/include/catalog/pg_amop.h +++ b/src/include/catalog/pg_amop.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_amop.h,v 1.16 1998/10/03 05:40:51 momjian Exp $ + * $Id: pg_amop.h,v 1.17 1998/10/22 05:29:23 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -309,7 +309,7 @@ DATA(insert OID = 0 ( 403 810 1225 4 btreesel btreenpage )); DATA(insert OID = 0 ( 403 810 1224 5 btreesel btreenpage )); /* - * nbtree ip + * nbtree inet */ DATA(insert OID = 0 ( 403 935 1203 1 btreesel btreenpage )); @@ -319,6 +319,16 @@ DATA(insert OID = 0 ( 403 935 1206 4 btreesel btreenpage )); DATA(insert OID = 0 ( 403 935 1205 5 btreesel btreenpage )); /* + * nbtree cidr + */ + +DATA(insert OID = 0 ( 403 652 822 1 btreesel btreenpage )); +DATA(insert OID = 0 ( 403 652 823 2 btreesel btreenpage )); +DATA(insert OID = 0 ( 403 652 820 3 btreesel btreenpage )); +DATA(insert OID = 0 ( 403 652 825 4 btreesel btreenpage )); +DATA(insert OID = 0 ( 403 652 824 5 btreesel btreenpage )); + +/* * hash table _ops */ @@ -352,5 +362,11 @@ DATA(insert OID = 0 ( 405 1115 1108 1 hashsel hashnpage )); DATA(insert OID = 0 ( 405 1312 1320 1 hashsel hashnpage )); /* timespan_ops */ DATA(insert OID = 0 ( 405 1313 1330 1 hashsel hashnpage )); +/* macaddr_ops */ +DATA(insert OID = 0 ( 405 810 1220 1 hashsel hashnpage )); +/* inet_ops */ +DATA(insert OID = 0 ( 405 935 1201 1 hashsel hashnpage )); +/* cidr_ops */ +DATA(insert OID = 0 ( 405 652 820 1 hashsel hashnpage )); #endif /* PG_AMOP_H */ diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 10553c2b51..a36e9030af 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -1,4 +1,4 @@ -/*------------------------------------------------------------------------- +1/*------------------------------------------------------------------------- * * pg_proc.h-- * definition of the system "procedure" relation (pg_proc) @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.78 1998/10/22 04:58:09 momjian Exp $ + * $Id: pg_proc.h,v 1.79 1998/10/22 05:29:24 momjian Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki