Re: Composite Type with Domain - Mailing list pgsql-bugs

From Tom Lane
Subject Re: Composite Type with Domain
Date
Msg-id 13353.1144129613@sss.pgh.pa.us
Whole thread Raw
In response to Composite Type with Domain  (维 姜 <jw.pgsql@sduept.com>)
Responses Re: Composite Type with Domain  (JiangWei <jw.pgsql@sduept.com>)
List pgsql-bugs
维 姜 <jw.pgsql@sduept.com> writes:
> => \encoding ISO_8859_1
> => SELECT row(100):: t_1;
> server closed the connection unexpectedly

Works for me:

regression=# SELECT row(100):: t_1;
ERROR:  value for domain d_1 violates check constraint "d_1_check"
regression=# \encoding ISO_8859_1
regression=# SELECT row(100):: t_1;
ERROR:  value for domain d_1 violates check constraint "d_1_check"

Please provide more details, like your locale and encoding settings.
        regards, tom lane


pgsql-bugs by date:

Previous
From: 维 姜
Date:
Subject: Composite Type with Domain
Next
From: JiangWei
Date:
Subject: Re: Composite Type with Domain