Re: [HACKERS] Deferrable NOT NULL constraints in 9.3?

2012-11-08 Thread Robert Haas
On Thu, Nov 8, 2012 at 4:45 AM, andr...@officenet.no wrote: Are there any plans to include DEFERRABLE NOT NULL constraints in 9.3 so one can do this? create table test(a varchar not null deferrable initially deferred); This works in Oracle and is quite handy when working with ORMs. Not to

Re: [HACKERS] Deferrable NOT NULL constraints in 9.3?

2012-11-08 Thread Tom Lane
Robert Haas robertmh...@gmail.com writes: On Thu, Nov 8, 2012 at 4:45 AM, andr...@officenet.no wrote: Are there any plans to include DEFERRABLE NOT NULL constraints in 9.3 so one can do this? create table test(a varchar not null deferrable initially deferred); This works in Oracle and is