diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-10 22:13:27 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-12-10 22:13:27 +0000 |
| commit | 9fa12ddda62549a0e0225220745c3bf89434dab3 (patch) | |
| tree | 691cde987387d3500ec9c5560f19b270beb90da7 /src/include/catalog/catversion.h | |
| parent | 314c7b642b14e8a60a411ecce2435edf0072f78a (diff) | |
| download | postgresql-9fa12ddda62549a0e0225220745c3bf89434dab3.tar.gz | |
Add a paramtypmod field to Param nodes. This is dead weight for Params
representing externally-supplied values, since the APIs that carry such
values only specify type not typmod. However, for PARAM_SUBLINK Params
it is handy to carry the typmod of the sublink's output column. This
is a much cleaner solution for the recently reported 'could not find
pathkey item to sort' and 'failed to find unique expression in subplan
tlist' bugs than my original 8.2-compatible patch. Besides, someday we
might want to support typmods for external parameters ...
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 246eef42f4..e6bcdfb054 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.361 2006/12/06 18:06:47 neilc Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.362 2006/12/10 22:13:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200612061 +#define CATALOG_VERSION_NO 200612101 #endif |
