mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
When you do "ARRAY[...]::domain", where domain is a domain over an array type,
we need to check domain constraints. We used to do it correctly, but 8.4 introduced a separate code path for the "ARRAY[]::arraytype" case to infer the type of an empty ARRAY construct from the cast target, and forgot to take domains into account. Per report from Florian G. Pflug.
This commit is contained in:
parent
5e75f6790c
commit
942702a496
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.248 2009/11/09 02:36:56 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/parser/parse_expr.c,v 1.249 2009/11/13 16:09:10 heikki Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -169,6 +169,20 @@ transformExpr(ParseState *pstate, Node *expr)
|
||||
targetType,
|
||||
elementType,
|
||||
targetTypmod);
|
||||
|
||||
/*
|
||||
* If the target array type is a domain, we still need
|
||||
* to check the domain constraint. (coerce_to_domain
|
||||
* is a no-op if targetType is not a domain)
|
||||
*/
|
||||
result = coerce_to_domain(result,
|
||||
InvalidOid,
|
||||
-1,
|
||||
targetType,
|
||||
COERCE_IMPLICIT_CAST,
|
||||
tc->location,
|
||||
false,
|
||||
true);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user