|
1 | 1 | ==================================================== |
2 | 2 | TODO list (FAQ) for PostgreSQL |
3 | 3 | ==================================================== |
4 | | -last updated:Thu Oct 2 14:08:20 EDT 1997 |
| 4 | +last updated:Fri Oct1708:18:16 EDT 1997 |
5 | 5 |
|
6 | 6 | current maintainer:Bruce Momjian (maillist@candle.pha.pa.us) |
7 | 7 |
|
8 | 8 | The most recent version of this document can be viewed at |
9 | 9 | the postgreSQL WWW site, http://www.postgreSQL.org. |
10 | 10 |
|
11 | | -THE CHANGES FOR 6.2 APPEAR AT THE END OF THIS DOCUMENT |
| 11 | +THE CHANGES FOR 6.2and 6.2.1APPEAR AT THE END OF THIS DOCUMENT |
12 | 12 |
|
13 | 13 | Developers who have claimed items are: |
14 | 14 | Bruce is Bruce Momjian<maillist@candle.pha.pa.us> |
@@ -70,6 +70,7 @@ PRIMARY KEY during table creation |
70 | 70 | Add SERIAL type |
71 | 71 | Preserve GRANT/REVOKE/pg_group in pg_dump |
72 | 72 | Transaction log |
| 73 | +More access control over who can create tables and access the database |
73 | 74 | Add full ANSI SQL capabilities (Stefan) |
74 | 75 | add subselects, possibility using temporary SQL functions |
75 | 76 | Implement HAVING clause |
@@ -135,6 +136,8 @@ make NULL's come out at the beginning or end depending on the ORDER BY direction |
135 | 136 | change the library/backend interface to use network byte order |
136 | 137 | allow unix domain sockets for local connections for performance and security |
137 | 138 | Add PAGER for psql's \dt and \d tablename |
| 139 | +Make timezone set-able by client applications(Thomas) |
| 140 | +Restore unused oid's on backend exit if no one else has gotten oids |
138 | 141 |
|
139 | 142 | PERFORMANCE |
140 | 143 | ----------- |
@@ -164,6 +167,23 @@ PORTABILITY |
164 | 167 |
|
165 | 168 | --------------------------------------------------------------------------- |
166 | 169 |
|
| 170 | + CHANGES IN THE 6.2.1 RELEASE |
| 171 | + |
| 172 | +Changes in this release |
| 173 | +----------------------- |
| 174 | +Allow TIME and TYPE column names(Thomas) |
| 175 | +Allow larger range of true/false as boolean values(Thomas) |
| 176 | +Support output of "now" and "current"(Thomas) |
| 177 | +Handle DEFAULT with INSERT of NULL properly(Vadim) |
| 178 | +Fix for relation reference counts problem in buffer manager(Vadim) |
| 179 | +Allow strings to span lines, like ANSI(Thomas) |
| 180 | +Fix for backward cursor with ORDER BY(Vadim) |
| 181 | +Fix avg(cash) computation(Thomas) |
| 182 | +Fix for specifying a column twice in ORDER/GROUP BY(Vadim) |
| 183 | +Documented new libpq function to return affected rows, PQcmdTuples(Bruce) |
| 184 | +Trigger function for inserting user names for INSERT/UPDATE(Brook Milligan) |
| 185 | + |
| 186 | + |
167 | 187 | CHANGES IN THE 6.2 RELEASE |
168 | 188 |
|
169 | 189 | Bug Fixes |
|