Strange ADD CHECK error message - Mailing list pgsql-hackers

From Christopher Kings-Lynne
Subject Strange ADD CHECK error message
Date
Msg-id GNELIHDDFBOCMGBFGEFOEEHACAAA.chriskl@familyhealth.com.au
Whole thread Raw
Responses Re: Strange ADD CHECK error message
List pgsql-hackers
I have noticed a strange error message when adding check constraints.
Basically the ADD CHECK below is failing because the field it is trying to
force to be NOT NULL already has NULL values in it.  However, the error
message it produces is quite cryptic and it took me a while to figure out
what was going on.

Is it still like this in 7.2b2, and should it be changed?

Chris

test=# select version();                          version
--------------------------------------------------------------PostgreSQL 7.1.3 on i386--freebsd4.2, compiled by GCC
2.95.2
(1 row)
test=# create table test (foo char(1) check (foo in ('M', 'V')));
CREATE
test=# insert into test values('M');
INSERT 2823326 1
test=# alter table test add column bar varchar(255);
ALTER
test=# alter table test add check (bar is not null);
ERROR:  AlterTableAddConstraint: rejected due to CHECK constraint <unnamed>



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Shared memory use?
Next
From: Stephan Szabo
Date:
Subject: Re: Strange ADD CHECK error message