diff options
| author | Neil Conway <neilc@samurai.com> | 2006-01-16 18:15:31 +0000 |
|---|---|---|
| committer | Neil Conway <neilc@samurai.com> | 2006-01-16 18:15:31 +0000 |
| commit | b06e6f1a9a8cdae98654eb984cd3a190e2b08a3d (patch) | |
| tree | c1bf2f612e788529d7de366d550c264db9431253 /src/include/catalog/catversion.h | |
| parent | 1ce4c9e9b4375886fb00f1c039617215f214d9f2 (diff) | |
| download | postgresql-b06e6f1a9a8cdae98654eb984cd3a190e2b08a3d.tar.gz | |
Change the parameter_types column of the pg_prepared_statements to be
an array of regtype, rather than an array of OIDs. This is likely to
be more useful to user, and the type OID can easily be obtained by
casting a regtype value to OID. Per suggestion from Tom.
Update the documentation and regression tests, and bump the catversion.
Diffstat (limited to 'src/include/catalog/catversion.h')
| -rw-r--r-- | src/include/catalog/catversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 258a9956f4..b844196c4f 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.310 2006/01/11 20:12:39 tgl Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.311 2006/01/16 18:15:30 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200601111 +#define CATALOG_VERSION_NO 200601161 #endif |
