mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
We neglected to apply domain constraints on UNKNOWN parameters to
prepared statements, per report from David Wheeler.
This commit is contained in:
parent
ea73a78b08
commit
4b3252c4b8
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/parser/parse_coerce.c,v 2.133 2005/11/22 18:17:16 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/parser/parse_coerce.c,v 2.134 2006/01/12 22:28:35 neilc Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -243,7 +243,10 @@ coerce_type(ParseState *pstate, Node *node,
|
||||
}
|
||||
|
||||
param->paramtype = targetTypeId;
|
||||
return (Node *) param;
|
||||
|
||||
/* Apply domain constraints, if necessary */
|
||||
return coerce_to_domain((Node *) param, InvalidOid, targetTypeId,
|
||||
cformat, false, false);
|
||||
}
|
||||
if (find_coercion_pathway(targetTypeId, inputTypeId, ccontext,
|
||||
&funcId))
|
||||
|
Loading…
Reference in New Issue
Block a user