1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-24 06:01:07 +03:00
< * Allow DEFERRABLE UNIQUE constraints?
> * Allow DEFERRABLE and end-of-statement UNIQUE constraints?
>
>   This would allow UPDATE tab SET col = col + 1 to work if col has
>   a unique index.  Currently, uniqueness checks are done while the
>   command is being executed, rather than at the end of the statement
>   or transaction.
>
This commit is contained in:
Bruce Momjian
2006-08-28 23:20:35 +00:00
parent 1832cefda1
commit 79222272bb
2 changed files with 15 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
PostgreSQL TODO List
====================
Current maintainer: Bruce Momjian (bruce@momjian.us)
Last updated: Fri Aug 25 19:43:59 EDT 2006
Last updated: Mon Aug 28 19:20:20 EDT 2006
The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -873,7 +873,13 @@ Triggers
memory. This could exhaust memory for very large trigger queues.
This item involves dumping large queues into files.
* Allow DEFERRABLE UNIQUE constraints?
* Allow DEFERRABLE and end-of-statement UNIQUE constraints?
This would allow UPDATE tab SET col = col + 1 to work if col has
a unique index. Currently, uniqueness checks are done while the
command is being executed, rather than at the end of the statement
or transaction.
* Allow triggers to be disabled in only the current session.
This is currently possible by starting a multi-statement transaction,