1997-10-17 18:30:26 +04:00
|
|
|
TODO list for PostgreSQL
|
|
|
|
========================
|
1999-07-28 21:52:31 +04:00
|
|
|
Last updated: Wed Jul 28 13:51:59 EDT 1999
|
1996-08-19 02:14:33 +04:00
|
|
|
|
1998-02-28 18:08:15 +03:00
|
|
|
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
|
1996-08-19 02:14:33 +04:00
|
|
|
|
1996-10-04 19:15:24 +04:00
|
|
|
The most recent version of this document can be viewed at
|
1999-07-13 07:07:20 +04:00
|
|
|
the PostgreSQL web site, http://www.PostgreSQL.org.
|
1996-10-04 19:15:24 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
A dash(-) marks changes that will appear in the next release.
|
1998-02-02 04:20:04 +03:00
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1996-08-19 02:14:33 +04:00
|
|
|
RELIABILITY
|
|
|
|
-----------
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
* Elog() does not free all its memory(Jan)
|
1999-07-07 00:41:22 +04:00
|
|
|
* spinlock stuck problem when elog(FATAL) and elog(ERROR) inside bufmgr
|
1999-06-07 06:42:07 +04:00
|
|
|
* Recover or force failure when disk space is exhausted
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
PARSER
|
|
|
|
|
|
|
|
* Disallow inherited columns with the same name as new columns
|
|
|
|
* INSERT INTO ... SELECT with AS columns matching result columns problem
|
|
|
|
* SELECT pg_class FROM pg_class generates strange error
|
1999-06-07 06:42:07 +04:00
|
|
|
* Alter TABLE ADD COLUMN does not honor DEFAULT, add CONSTRAINT
|
1999-07-07 00:41:22 +04:00
|
|
|
* Do not allow bpchar column creation without length
|
|
|
|
* Select a[1] FROM test fails, it needs test.a[1]
|
1999-07-17 07:07:10 +04:00
|
|
|
* -Array index references without table name cause problems
|
1999-07-07 00:41:22 +04:00
|
|
|
* Update table SET table.value = 3 fails
|
1999-07-09 07:28:53 +04:00
|
|
|
* Creating index of TIMESTAMP & RELTIME fails, or rename to DATETIME(Thomas)
|
1999-07-07 21:17:50 +04:00
|
|
|
* SELECT foo UNION SELECT foo is incorrectly simplified to SELECT foo
|
1999-07-19 04:50:43 +04:00
|
|
|
* -INSERT ... SELECT ... GROUP BY groups by target columns not source columns
|
|
|
|
* -CREATE TABLE test (a char(5) DEFAULT text '', b int4) fails on INSERT
|
1999-07-08 07:33:19 +04:00
|
|
|
* UNION with LIMIT fails
|
1999-07-09 20:56:44 +04:00
|
|
|
* Unique index on base column not honored on inserts from inherited table
|
|
|
|
INSERT INTO inherit_table (unique_index_col) VALUES (dup) should fail
|
1999-07-17 20:47:46 +04:00
|
|
|
* CREATE TABLE x AS SELECT 1 UNION SELECT 2 fails
|
1999-07-16 21:07:40 +04:00
|
|
|
* CREATE TABLE test(col char(2) DEFAULT user) fails in length restriction
|
1999-07-20 21:24:36 +04:00
|
|
|
* SELECT ... UNION ... ORDER BY fails when sort expr not in result list
|
1999-07-21 03:05:50 +04:00
|
|
|
* Be smarter about promoting types when UNION merges different data types
|
|
|
|
* SELECT ... UNION ... GROUP BY fails if column types disagree
|
1999-07-21 01:43:18 +04:00
|
|
|
* redesign INSERT ... SELECT to have two levels of target list
|
1999-07-28 21:51:41 +04:00
|
|
|
* -select * from pg_class where oid in (0,-1)
|
1999-08-05 05:53:35 +04:00
|
|
|
* have INTERSECT/EXCEPT prevent duplicates unless ALL is specified
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
VIEWS
|
|
|
|
|
|
|
|
* Views containing aggregates sometimes fail(Jan)
|
1999-06-07 06:42:07 +04:00
|
|
|
* Views with spaces in view name fail when referenced
|
1999-06-05 07:43:07 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
MISC
|
|
|
|
|
|
|
|
* User who can create databases can modify pg_database table
|
|
|
|
* Plpgsql does not handle quoted mixed-case identifiers
|
1999-07-10 01:46:14 +04:00
|
|
|
* Fix btree to give a useful elog when key > 1/2 (page - overhead)
|
1999-07-27 00:12:33 +04:00
|
|
|
* pg_dump should preserve primary key information
|
1996-08-19 02:14:33 +04:00
|
|
|
|
|
|
|
ENHANCEMENTS
|
|
|
|
------------
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
URGENT
|
|
|
|
|
1999-07-09 07:28:53 +04:00
|
|
|
* Add referential integrity(Jan?)
|
|
|
|
* Add OUTER joins, left and right(Thomas, Bruce)
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow long tuples by chaining or auto-storing outside db (chaining,large objs)
|
1999-07-07 00:41:22 +04:00
|
|
|
* Eliminate limits on query length
|
1999-07-09 07:28:53 +04:00
|
|
|
* Fix memory leak for expressions?, aggregates?(Tom?)
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
ADMIN
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
* Better interface for adding to pg_group
|
1997-10-17 18:30:26 +04:00
|
|
|
* More access control over who can create tables and access the database
|
1999-06-07 06:42:07 +04:00
|
|
|
* Add syslog functionality
|
|
|
|
* Allow elog() to return error codes, not just messages
|
|
|
|
* Allow international error message support and add error codes
|
|
|
|
* Generate postmaster pid file and remove flock/fcntl lock code
|
|
|
|
* Add ability to specifiy location of lock/socket files
|
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
TYPES
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
* Add BIT, BIT VARYING
|
|
|
|
* Nchar (as distinguished from ordinary varchar),
|
|
|
|
* Domain capability
|
|
|
|
* Add STDDEV/VARIANCE() function for standard deviation computation/variance
|
1997-10-17 18:30:26 +04:00
|
|
|
* Allow compression of large fields or a compressed field type
|
|
|
|
* Large objects
|
1999-07-07 00:41:22 +04:00
|
|
|
o Fix large object mapping scheme, own typeid or reltype(Peter)
|
|
|
|
o Allow large text type to use large objects(Peter)
|
1999-07-08 04:00:43 +04:00
|
|
|
o Not to stuff everything as files in a single directory, hash dirs
|
|
|
|
o Allow large object vacuuming
|
1999-07-09 07:28:53 +04:00
|
|
|
o Tables that start with xinv confused to be large objects
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow pg_descriptions when creating types, tables, columns, and functions
|
|
|
|
* Add IPv6 capability to INET/CIDR types
|
|
|
|
* Make a separate SERIAL type?
|
|
|
|
* Store binary-compatible type information in the system
|
|
|
|
* Allow user to define char1 column
|
|
|
|
* Add support for & operator
|
1999-07-07 00:41:22 +04:00
|
|
|
* Allow LOCALE on a per-column basis, default to ASCII
|
|
|
|
* Allow array on int8[]
|
|
|
|
* Remove Money type, add money formatting for decimal type
|
1999-07-08 07:22:46 +04:00
|
|
|
* Declare typein/out functions in pg_proc with a special "C string" data type
|
1999-07-08 06:46:39 +04:00
|
|
|
* Add non-large-object binary field
|
1999-08-10 20:56:54 +04:00
|
|
|
* Add index on NUMERIC/DECIMAL type
|
1999-07-15 17:46:16 +04:00
|
|
|
* Make Absolutetime/Relativetime int4 because time_t can be int8 on some ports
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
VIEWS
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-06-05 07:43:07 +04:00
|
|
|
* Allow DISTINCT on views
|
1998-02-28 01:01:58 +03:00
|
|
|
* Allow views of aggregate columns
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow views with subselects
|
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
INDEXES
|
1999-06-07 06:42:07 +04:00
|
|
|
|
|
|
|
* Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)
|
1999-07-07 00:41:22 +04:00
|
|
|
fails index can't store constant parameters
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow creation of functional indexes to use default types
|
|
|
|
* Permissions on indexes - prevent them?
|
|
|
|
* Allow SQL function indexes
|
|
|
|
* Add FILLFACTOR to index creation
|
1999-07-07 00:41:22 +04:00
|
|
|
* Allow indexing of LIKE with localle character sets
|
|
|
|
* Allow indexing of more than eight columns
|
|
|
|
|
|
|
|
COMMANDS
|
1999-06-07 06:42:07 +04:00
|
|
|
|
|
|
|
* ALTER TABLE ADD COLUMN to inherited table put column in wrong place
|
|
|
|
* Add ALTER TABLE DROP/ALTER COLUMN feature
|
|
|
|
* Allow CLUSTER on all tables at once, and improve CLUSTER
|
1998-08-30 05:40:52 +04:00
|
|
|
* Generate error on CREATE OPERATOR of ~~, ~ and and ~*
|
1999-06-07 06:42:07 +04:00
|
|
|
* Add SIMILAR TO to allow character classes, 'pg_[a-c]%'
|
1999-07-07 13:11:15 +04:00
|
|
|
* Auto-destroy sequence on DROP of table with SERIAL(Ryan)
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow LOCK TABLE tab1, tab2, tab3 so all tables locked in unison
|
|
|
|
* Allow INSERT/UPDATE of system-generated oid value for a row
|
1999-06-05 07:43:07 +04:00
|
|
|
* Allow ESCAPE '\' at the end of LIKE for ANSI compliance
|
1999-06-07 06:42:07 +04:00
|
|
|
* Rewrite the LIKE handling by rewriting the user string with the
|
1999-07-07 00:41:22 +04:00
|
|
|
supplied ESCAPE
|
1999-06-07 06:42:07 +04:00
|
|
|
* Move LIKE index optimization handling to the optimizer
|
1999-07-09 08:20:22 +04:00
|
|
|
* Allow RULE recompilation
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
CLIENTS
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
* Make NULL's come out at the beginning or end depending on the
|
1999-07-07 00:41:22 +04:00
|
|
|
ORDER BY direction
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow flag to control COPY input/output of NULLs
|
1999-06-05 07:43:07 +04:00
|
|
|
* Update reltuples from COPY command
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow psql \copy to allow delimiters
|
|
|
|
* Add a function to return the last inserted oid, for use in psql scripts
|
|
|
|
* Allow psql to print nulls as distinct from ""(?)
|
1999-07-08 04:00:43 +04:00
|
|
|
* PQrequestCancel() be able to terminate backend waiting for lock
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-07-09 07:28:53 +04:00
|
|
|
EXOTIC FEATURES
|
|
|
|
|
|
|
|
* Add sql3 recursive unions
|
|
|
|
* Add the concept of dataspaces
|
|
|
|
* Add replication of distributed databases
|
|
|
|
* Allow queries across multiple databases
|
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
MISC
|
|
|
|
|
1999-06-05 07:43:07 +04:00
|
|
|
* Increase identifier length(NAMEDATALEN) if small performance hit
|
1999-07-07 13:11:15 +04:00
|
|
|
* Allow row re-use without vacuum(Vadim)
|
|
|
|
* Create a background process for each database that runs while
|
|
|
|
database is idle, finding superceeded rows, gathering stats and vacuuming
|
1999-06-07 06:42:07 +04:00
|
|
|
* Add UNIQUE capability to non-btree indexes
|
|
|
|
* Certain indexes will not shrink, i.e. oid indexes with many inserts
|
|
|
|
* Restore unused oid's on backend exit if no one else has gotten oids
|
|
|
|
* Have UPDATE/DELETE clean out indexes
|
|
|
|
* Allow WHERE restriction on ctid
|
|
|
|
* Allow cursors to be DECLAREd/OPENed/CLOSEed outside transactions
|
|
|
|
* Allow PQrequestCancel() to terminate when in waiting-for-lock state
|
1999-07-07 13:11:15 +04:00
|
|
|
* Transaction log, so re-do log can be on a separate disk by
|
1999-07-08 09:01:25 +04:00
|
|
|
with after-row images(Vadim)
|
1999-06-07 06:42:07 +04:00
|
|
|
* Populate backend status area and write program to dump status data
|
|
|
|
* Make oid use unsigned int more reliably, pg_atoi()
|
1999-07-07 00:41:22 +04:00
|
|
|
* Allow subqueries in target list
|
|
|
|
* Put sort files, large objects in their on directory
|
|
|
|
* Do autocommit so always in a transaction block
|
|
|
|
* Show location of syntax error in query
|
|
|
|
* Redesign the function call interface to handle NULLs better(Jan)
|
|
|
|
* Document/trigger/rule so changes to pg_shadow create pg_pwd
|
1999-07-08 06:46:39 +04:00
|
|
|
* Missing optimizer selectivities for date, r-tree, etc.
|
1999-07-07 00:41:22 +04:00
|
|
|
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
|
|
|
|
* Overhaul bufmgr/lockmgr/transaction manager
|
1999-06-07 06:42:07 +04:00
|
|
|
* Add PL/Perl(Mark Hollomon)
|
1999-07-09 07:28:53 +04:00
|
|
|
* Make postgres user have a password by default
|
1999-07-09 08:20:22 +04:00
|
|
|
* Add configure test to check for C++ need for *.h and namespaces
|
1999-07-09 21:40:31 +04:00
|
|
|
* Allow BLCKSZ <= 64k, not <= 32k
|
1999-07-20 21:16:25 +04:00
|
|
|
* redesign UNION structures to have separarate target lists
|
1996-10-04 19:15:24 +04:00
|
|
|
|
|
|
|
PERFORMANCE
|
|
|
|
-----------
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
FSYNC
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow transaction commits with rollback with no-fsync performance
|
|
|
|
* Prevent fsync in SELECT-only queries
|
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
INDEXES
|
|
|
|
|
1998-08-30 05:40:52 +04:00
|
|
|
* Use indexes in ORDER BY for restrictive data sets, min(), max()
|
1999-06-07 06:42:07 +04:00
|
|
|
* Pull requested data directly from indexes, bypassing heap data
|
|
|
|
* Use index to restrict rows returned by multi-key index when used with
|
1999-07-07 00:41:22 +04:00
|
|
|
non-consecutive keys or OR clauses, so fewer heap accesses
|
|
|
|
* Convert function(constant) into a constant for index use
|
1999-06-05 07:43:07 +04:00
|
|
|
* Allow LIMIT ability on single-table queries that have no ORDER BY to use
|
1999-07-07 00:41:22 +04:00
|
|
|
a matching index
|
1999-06-07 06:42:07 +04:00
|
|
|
* Improve LIMIT processing by using index to limit rows processed
|
1999-07-07 13:11:15 +04:00
|
|
|
* Have optimizer take LIMIT into account when considering index scans
|
1999-07-08 04:00:43 +04:00
|
|
|
* Make index creation use psort code, because it is now faster(Vadim)
|
1999-07-08 07:22:46 +04:00
|
|
|
* Allow creation of sort temp tables > 1 Gig
|
1999-07-08 04:00:43 +04:00
|
|
|
* Create more system table indexes for faster cache lookups
|
|
|
|
* fix indexscan() so it does leak memory by not requiring caller to free
|
|
|
|
* Improve _bt_binsrch() to handle equal keys better, remove _bt_firsteq()(Tom)
|
1999-07-15 17:46:16 +04:00
|
|
|
* Allow SELECT * FROM tab WHERE int2col = 4 use int2col index
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
CACHE
|
|
|
|
|
1997-10-17 18:30:26 +04:00
|
|
|
* Cache most recent query plan(s?)
|
|
|
|
* Shared catalog cache, reduce lseek()'s by caching table size in shared area
|
1999-07-08 04:00:43 +04:00
|
|
|
* elog() flushes cache, try invalidating just entries from current xact,
|
|
|
|
perhaps using invalidation cache
|
|
|
|
|
1999-06-07 06:42:07 +04:00
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
MISC
|
|
|
|
|
1997-10-17 18:30:26 +04:00
|
|
|
* Allow compression of log and meta data
|
1999-06-07 06:42:07 +04:00
|
|
|
* Update pg_statistic table to remove operator column
|
1998-03-21 08:28:27 +03:00
|
|
|
* Allow char() not to use variable-sized header to reduce disk size
|
|
|
|
* Do async I/O to do better read-ahead of data
|
|
|
|
* Fix memory exhaustion when using many OR's
|
|
|
|
* Get faster regex() code from Henry Spencer <henry@zoo.utoronto.ca>
|
1999-07-07 00:41:22 +04:00
|
|
|
when it is available
|
1999-06-07 06:42:07 +04:00
|
|
|
* Use mmap() rather than SYSV shared memory(?)
|
|
|
|
* Process const = const parts of OR clause in separate pass
|
|
|
|
* Make oid use oidin/oidout not int4in/int4out in pg_type.h
|
1999-06-05 07:43:07 +04:00
|
|
|
* Improve Subplan list handling
|
1999-06-07 06:42:07 +04:00
|
|
|
* Allow Subplans to use efficient joins(hash, merge) with upper variable
|
1999-07-07 13:11:15 +04:00
|
|
|
* use fmgr_info()/fmgr_faddr() instead of fmgr() calls in high-traffic
|
|
|
|
places, like GROUP BY, UNIQUE, index processing, etc.
|
|
|
|
* improve dynamic memory allocation by introducing tuple-context memory
|
|
|
|
allocation
|
1999-07-08 04:00:43 +04:00
|
|
|
* fix memory leak in cache code when non-existant table is referenced
|
1999-07-09 07:28:53 +04:00
|
|
|
* In WHERE tab1.x=3 AND tab1.x=tab2.y, add tab2.y=3
|
1999-07-08 04:00:43 +04:00
|
|
|
* pass atttypmod through parser in more cases(Bruce)
|
1999-07-08 06:46:39 +04:00
|
|
|
* remove duplicate type in/out functions for disk and net
|
|
|
|
|
1999-07-07 00:41:22 +04:00
|
|
|
SOURCE CODE
|
|
|
|
-----------
|
1998-10-24 08:43:39 +04:00
|
|
|
* Add use of 'const' for varibles in source tree
|
1999-07-07 00:41:22 +04:00
|
|
|
* Fix C optimizer problem where fmgr_ptr calls return different types
|
1999-07-11 06:02:13 +04:00
|
|
|
* Add needed includes and removed unneede include files(Bruce)
|
1999-07-26 19:28:32 +04:00
|
|
|
* Make configure --enable-debug add -g on compile line
|
1999-07-07 00:41:22 +04:00
|
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
Developers who have claimed items are:
|
|
|
|
--------------------------------------
|
|
|
|
* Billy is Billy G. Allie <Bill.Allie@mug.org>
|
|
|
|
* Brook is Brook Milligan <brook@trillium.NMSU.Edu>
|
|
|
|
* Bruce is Bruce Momjian<maillist@candle.pha.pa.us>
|
|
|
|
* Bryan is Bryan Henderson<bryanh@giraffe.netgate.net>
|
|
|
|
* D'Arcy is D'Arcy J.M. Cain <darcy@druid.net>
|
|
|
|
* David is David Hartwig <daveh@insightdist.com>
|
|
|
|
* Edmund is Edmund Mergl <E.Mergl@bawue.de>
|
|
|
|
* Goran is Goran Thyni <goran@kyla.kiruna.se>
|
|
|
|
* Hiroshi is Hiroshi Inoue<Inoue@tpf.co.jp>
|
|
|
|
* Jan is Jan Wieck <wieck@sapserv.debis.de>
|
|
|
|
* Marc is Marc Fournier <scrappy@hub.org>
|
|
|
|
* Massimo Dal Zotto <dz@cs.unitn.it>
|
|
|
|
* Michael is Michael Meskes <meskes@postgresql.org>
|
|
|
|
* Oleg is Oleg Bartunov <oleg@sai.msu.su>
|
|
|
|
* Peter is Peter T Mount <peter@retep.org.uk>
|
1999-07-07 13:11:15 +04:00
|
|
|
* Ryan is Ryan Bradetich <rbrad@hpb50023.boi.hp.com>
|
1999-07-07 00:41:22 +04:00
|
|
|
* Stefan Simkovics <ssimkovi@rainbow.studorg.tuwien.ac.at>
|
|
|
|
* Tatsuo is Tatsuo Ishii <t-ishii@sra.co.jp>
|
|
|
|
* Tom is Tom Lane <tgl@sss.pgh.pa.us>
|
|
|
|
* Thomas is Thomas Lockhart <lockhart@alumni.caltech.edu>
|
|
|
|
* TomH is Tom I Helbekkmo <tih@Hamartun.Priv.NO>
|
|
|
|
* Vadim is "Vadim B. Mikheev" <vadim@krs.ru>
|
|
|
|
|
|
|
|
|