diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
-rw-r--r-- | src/include/catalog/namespace.h | 4 | ||||
-rw-r--r-- | src/include/catalog/pg_proc.h | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index fa313187330..710b5c71ac8 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catversion.h,v 1.169 2002/12/12 15:49:40 tgl Exp $ + * $Id: catversion.h,v 1.170 2002/12/12 21:02:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200212101 +#define CATALOG_VERSION_NO 200212121 #endif diff --git a/src/include/catalog/namespace.h b/src/include/catalog/namespace.h index 793a84b7c60..27e3e75168f 100644 --- a/src/include/catalog/namespace.h +++ b/src/include/catalog/namespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: namespace.h,v 1.22 2002/11/02 18:41:22 tgl Exp $ + * $Id: namespace.h,v 1.23 2002/12/12 21:02:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -65,6 +65,8 @@ extern bool OperatorIsVisible(Oid oprid); extern OpclassCandidateList OpclassGetCandidates(Oid amid); extern Oid OpclassnameGetOpcid(Oid amid, const char *opcname); extern bool OpclassIsVisible(Oid opcid); +extern bool ConversionIsVisible(Oid opcid); +extern Oid ConversionGetConid(const char *conname); extern void DeconstructQualifiedName(List *names, char **nspname_p, diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 348646c5490..7558206a657 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.279 2002/12/06 05:20:26 momjian Exp $ + * $Id: pg_proc.h,v 1.280 2002/12/12 21:02:25 momjian Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -2930,6 +2930,8 @@ DATA(insert OID = 2082 ( pg_operator_is_visible PGNSP PGUID 12 f f t f s 1 16 " DESCR("is operator visible in search path?"); DATA(insert OID = 2083 ( pg_opclass_is_visible PGNSP PGUID 12 f f t f s 1 16 "26" pg_opclass_is_visible - _null_ )); DESCR("is opclass visible in search path?"); +DATA(insert OID = 2093 ( pg_conversion_is_visible PGNSP PGUID 12 f f t f s 1 16 "26" pg_conversion_is_visible - _null_ )); +DESCR("is conversion visible in search path?"); /* Aggregates (moved here from pg_aggregate for 7.3) */ |