aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-06-13 21:12:43 +0000
committerBruce Momjian <bruce@momjian.us>2001-06-13 21:12:43 +0000
commitf21e3407e6f8b706dc2a490365e13a8e613523de (patch)
treec22f74f3fe4fb001dbd8a7c8af38e6ee1da10906 /src
parentd4a4d4c32608fd7c84aeab655072a7667e57c02a (diff)
downloadpostgresql-f21e3407e6f8b706dc2a490365e13a8e613523de.tar.gz
postgresql-f21e3407e6f8b706dc2a490365e13a8e613523de.zip
Fix for duplicate oids just introduced in patch. Don't think it needs
initdb unless you are using inet types.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_proc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index 80441957eb1..71b3b545f16 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_proc.h,v 1.192 2001/06/13 21:08:59 momjian Exp $
+ * $Id: pg_proc.h,v 1.193 2001/06/13 21:12:43 momjian Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
@@ -2308,11 +2308,11 @@ DATA(insert OID = 699 ( host PGUID 12 f t t t 1 f 25 "869" 100 0 0 100 netw
DESCR("show address octets only");
DATA(insert OID = 730 ( text PGUID 12 f t t t 1 f 25 "869" 100 0 0 100 network_show - ));
DESCR("show all parts of inet/cidr value");
-DATA(insert OID = 1910 ( inet PGUID 12 f t t t 1 f 869 "25" 100 0 0 100 text_inet - ));
+DATA(insert OID = 1713 ( inet PGUID 12 f t t t 1 f 869 "25" 100 0 0 100 text_inet - ));
DESCR("text to inet");
-DATA(insert OID = 1911 ( cidr PGUID 12 f t t t 1 f 650 "25" 100 0 0 100 text_cidr - ));
+DATA(insert OID = 1714 ( cidr PGUID 12 f t t t 1 f 650 "25" 100 0 0 100 text_cidr - ));
DESCR("text to cidr");
-DATA(insert OID = 1912 ( set_masklen PGUID 12 f t t t 2 f 869 "869 23" 100 0 0 100 inet_set_masklen - ));
+DATA(insert OID = 1715 ( set_masklen PGUID 12 f t t t 2 f 869 "869 23" 100 0 0 100 inet_set_masklen - ));
DESCR("change the netmask of an inet");
DATA(insert OID = 1691 ( boolle PGUID 12 f t t t 2 f 16 "16 16" 100 0 0 100 boolle - ));