diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-11-07 15:31:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-11-07 15:31:14 +0000 |
commit | cddc7f2746310b6d0586a3ca11a5b345a5dbd8dd (patch) | |
tree | 169c95335f0ce423998579d7599bdffdcfea7dff | |
parent | e1b47c2dbd2718c3ce54d0b37b9e90d539168ea2 (diff) | |
download | postgresql-cddc7f2746310b6d0586a3ca11a5b345a5dbd8dd.tar.gz postgresql-cddc7f2746310b6d0586a3ca11a5b345a5dbd8dd.zip |
Add:
> * Allow CREATE TABLE foo (f1 INT CHECK (f1 > 0) CHECK (f1 < 10)) to work
> by searching for non-conflicting constraint names, and prefix with table name
-rw-r--r-- | doc/TODO | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,6 @@ TODO list for PostgreSQL ======================== -Last updated: Sun Oct 26 00:43:53 EDT 2003 +Last updated: Fri Nov 7 10:31:14 EST 2003 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -206,7 +206,8 @@ Commands (Christopher) * Add optional textual message to NOTIFY * Allow more ISOLATION LEVELS to be accepted, but issue a warning for them - +* Allow CREATE TABLE foo (f1 INT CHECK (f1 > 0) CHECK (f1 < 10)) to work + by searching for non-conflicting constraint names, and prefix with table name * ALTER o ALTER TABLE ADD COLUMN does not honor DEFAULT and non-CHECK CONSTRAINT @@ -516,7 +517,7 @@ Source Code * Acquire lock on a relation before building a relcache entry for it * Research interaction of setitimer() and sleep() used by statement_timeout * Add checks for fclose() failure -* Change CVS $Id: TODO,v 1.1161 2003/10/26 04:43:55 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1161 2003/10/26 04:43:55 momjian Exp $ +* Change CVS $Id: TODO,v 1.1162 2003/11/07 15:31:14 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1162 2003/11/07 15:31:14 momjian Exp $ * Exit postmaster if postgresql.conf can not be opened * Rename /scripts directory because they are all C programs now * Allow the regression tests to start postmaster with -i so the tests |