|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
|
==================================================== |
|
|
|
|
TODO list (FAQ) for PostgreSQL |
|
|
|
|
==================================================== |
|
|
|
|
last updated: Mon Sep 29 22:45:43 EDT 1997 |
|
|
|
|
last updated: Thu Oct 2 14:08:20 EDT 1997 |
|
|
|
|
|
|
|
|
|
current maintainer: Bruce Momjian (maillist@candle.pha.pa.us) |
|
|
|
|
|
|
|
|
|
@ -165,6 +165,7 @@ PORTABILITY |
|
|
|
|
--------------------------------------------------------------------------- |
|
|
|
|
|
|
|
|
|
CHANGES IN THE 6.2 RELEASE |
|
|
|
|
|
|
|
|
|
Bug Fixes |
|
|
|
|
--------- |
|
|
|
|
Fix problems with pg_dump for inheritance, sequences, archive tables(Bruce) |
|
|
|
|
@ -181,6 +182,13 @@ Fix very old bug which made tuples changed/inserted by a commnd |
|
|
|
|
Fix for SELECT null, 'fail' FROM pg_am (Patrick) |
|
|
|
|
SELECT NULL as EMPTY_FIELD now allowed(Patrick) |
|
|
|
|
Remove un-needed signal stuff from contrib/pginterface |
|
|
|
|
Fix OR (where x <> 1 or x isnull didn't return tuples with x NULL) (Vadim) |
|
|
|
|
Fix time_cmp function (Vadim) |
|
|
|
|
Fix handling of functions with non-attribute first argument in |
|
|
|
|
WHERE clauses (Vadim) |
|
|
|
|
Fix GROUP BY when order of entries is different from order |
|
|
|
|
in target list (Vadim) |
|
|
|
|
Fix pg_dump for aggregates without sfunc1 (Vadim) |
|
|
|
|
|
|
|
|
|
Enhancements |
|
|
|
|
------------ |
|
|
|
|
@ -190,7 +198,8 @@ Added JDBC driver as an interface(Adrian & Peter) |
|
|
|
|
pg_password utility |
|
|
|
|
Return number of tuples inserted/affected by INSERT/UPDATE/DELETE etc.(Vadim) |
|
|
|
|
Triggers implemented with CREATE TRIGGER (SQL3)(Vadim) |
|
|
|
|
SPI (Server Programming Interface) implemented to support triggers(Vadim) |
|
|
|
|
SPI (Server Programming Interface) allows execution of queries inside |
|
|
|
|
C-functions (Vadim) |
|
|
|
|
NOT NULL implemented (SQL92)(Robson Paniago de Miranda) |
|
|
|
|
Include reserved words for string handling, outer joins, and unions(Thomas) |
|
|
|
|
Implement extended comments ("/* ... */") using exclusive states(Thomas) |
|
|
|
|
@ -226,6 +235,10 @@ Reduce open() calls(Bruce) |
|
|
|
|
psql: Add PAGER for \h and \?,\C fix |
|
|
|
|
Fix for psql pager when no tty(Bruce) |
|
|
|
|
New entab utility(Bruce) |
|
|
|
|
General trigger functions for referential integrity (Vadim) |
|
|
|
|
General trigger functions for time travel (Vadim) |
|
|
|
|
General trigger functions for AUTOINCREMENT/IDENTITY feature (Vadim) |
|
|
|
|
MOVE implementation (Vadim) |
|
|
|
|
|
|
|
|
|
Source Tree Changes |
|
|
|
|
------------------- |
|
|
|
|
@ -260,3 +273,4 @@ Add comments syntax regression test(Thomas) |
|
|
|
|
Add PGINDENT and support program(Bruce) |
|
|
|
|
Massive commit to run PGINDENT on all *.c and *.h files(Bruce) |
|
|
|
|
Files moved to /src/tools directory(Bruce) |
|
|
|
|
SPI and Trigger programming guides (Vadim & D'Arcy) |
|
|
|
|
|