Tom Lane <tgl@xxxxxxxxxxxxx> writes: > "Dann Corbit" <DCorbit@xxxxxxxxx> writes: > > > Even at that, I think that being able to insert more than one null value > > into a unique index should be considered as a bug (or diagnosed as an > > error). > > Direct your complaints to the ISO SQL standards committee. The SQL standard generally treats NULLs as a escape hatch for constraints. That's true for CHECK constraints as well: if you have a "CHECK a>0" constraint but a is nullable then a NULL value is allowed even though the check constraint can't be verified. This isn't an unreasonable approach. Once you have NULLs it makes more sense to make them useful than to treat them as just another value. You can always make the column NOT NULL if you don't want any exceptions to your constraints. -- greg ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly