summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_coerce.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-12-10 22:13:27 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-12-10 22:13:27 +0000
commit9fa12ddda62549a0e0225220745c3bf89434dab3 (patch)
tree691cde987387d3500ec9c5560f19b270beb90da7 /src/backend/parser/parse_coerce.c
parent314c7b642b14e8a60a411ecce2435edf0072f78a (diff)
downloadpostgresql-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/backend/parser/parse_coerce.c')
-rw-r--r--src/backend/parser/parse_coerce.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c
index a8972342af..2a468c6827 100644
--- a/src/backend/parser/parse_coerce.c
+++ b/src/backend/parser/parse_coerce.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/parser/parse_coerce.c,v 2.146 2006/11/28 12:54:41 petere Exp $
+ * $PostgreSQL: pgsql/src/backend/parser/parse_coerce.c,v 2.147 2006/12/10 22:13:26 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -264,6 +264,14 @@ coerce_type(ParseState *pstate, Node *node,
}
param->paramtype = targetTypeId;
+ /*
+ * Note: it is tempting here to set the Param's paramtypmod to
+ * targetTypeMod, but that is probably unwise because we have no
+ * infrastructure that enforces that the value delivered for a
+ * Param will match any particular typmod. Leaving it -1 ensures
+ * that a run-time length check/coercion will occur if needed.
+ */
+ param->paramtypmod = -1;
return (Node *) param;
}