Re: Feature request - function-based deferrable uniques. - Mailing list pgsql-hackers

From Dean Rasheed
Subject Re: Feature request - function-based deferrable uniques.
Date
Msg-id h2q8e2dbb701004010212p7a823716mc0c5339cc4c45d1f@mail.gmail.com
Whole thread Raw
In response to Feature request - function-based deferrable uniques.  (Dmitry Fefelov <fozzy@ac-sw.com>)
List pgsql-hackers
On 31 March 2010 06:58, Dmitry Fefelov <fozzy@ac-sw.com> wrote:
> For now Postgres able to create deferrable uniques with following syntax:
>
> ...
> and table_constraint is:
>
> [ CONSTRAINT constraint_name ]
> { UNIQUE ( column_name [, ... ] ) index_parameters |
>  PRIMARY KEY ( column_name [, ... ] ) index_parameters |
>  CHECK ( expression ) |
>  FOREIGN KEY ( column_name [, ... ] ) REFERENCES reftable [ ( refcolumn [,
> ... ] ) ]
>    [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE action ] [ ON
> UPDATE action ] }
> [ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]
>
> So, deferrable uniques now can be based on column/columns list only. It will
> be very useful if there will be possibility to specify functions in this list.
> Is it possible?
>

It's not currently possible using the unique constraint syntax, but I
think that it would be nice to extend this syntax to support this. I
don't think the SQL spec says anything about this, but I think it
would be a useful extension.

Note, however, that there is a workaround to achieve this, which is to
use exclusion constraints. For example:

create table foo(a text, constraint c exclude ((lower(a)) with =)
deferrable initially deferred);

Regards,
Dean


pgsql-hackers by date:

Previous
From: Ilya Kosmodemiansky
Date:
Subject: Re: Postgres 9.1 - Release Theme
Next
From: Thom Brown
Date:
Subject: Re: sorry, too many standbys already vs. MaxWalSenders vs. max_wal_senders