pgsql: When you do "ARRAY[...]::domain", where domain is a domain over - Mailing list pgsql-committers

From heikki@postgresql.org (Heikki Linnakangas)
Subject pgsql: When you do "ARRAY[...]::domain", where domain is a domain over
Date
Msg-id 20091113160910.991C4753FB7@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
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.

Modified Files:
--------------
    pgsql/src/backend/parser:
        parse_expr.c (r1.248 -> r1.249)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_expr.c?r1=1.248&r2=1.249)

pgsql-committers by date:

Previous
From: mkz@pgfoundry.org (User Mkz)
Date:
Subject: pgbouncer - pgbouncer: win32: allow user to override service account
Next
From: heikki@postgresql.org (Heikki Linnakangas)
Date:
Subject: pgsql: When you do "ARRAY[...]::domain", where domain is a domain over