mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Add to TODO:
> * Allow prepared transactions with temporary tables created and dropped > in the same transaction, and when an ON COMMIT DELETE ROWS temporary > table is accessed > > http://archives.postgresql.org/pgsql-hackers/2008-03/msg00047.php
This commit is contained in:
12
doc/TODO
12
doc/TODO
@ -1,7 +1,7 @@
|
|||||||
PostgreSQL TODO List
|
PostgreSQL TODO List
|
||||||
====================
|
====================
|
||||||
Current maintainer: Bruce Momjian (bruce@momjian.us)
|
Current maintainer: Bruce Momjian (bruce@momjian.us)
|
||||||
Last updated: Thu Apr 24 13:32:33 EDT 2008
|
Last updated: Thu Apr 24 14:22:49 EDT 2008
|
||||||
|
|
||||||
The most recent version of this document can be viewed at
|
The most recent version of this document can be viewed at
|
||||||
http://www.postgresql.org/docs/faqs.TODO.html.
|
http://www.postgresql.org/docs/faqs.TODO.html.
|
||||||
@ -604,6 +604,14 @@ SQL Commands
|
|||||||
|
|
||||||
http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php
|
http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php
|
||||||
|
|
||||||
|
* Improve failure message when DROP DATABASE is used on a database that
|
||||||
|
has prepared transactions
|
||||||
|
* Allow prepared transactions with temporary tables created and dropped
|
||||||
|
in the same transaction, and when an ON COMMIT DELETE ROWS temporary
|
||||||
|
table is accessed
|
||||||
|
|
||||||
|
http://archives.postgresql.org/pgsql-hackers/2008-03/msg00047.php
|
||||||
|
|
||||||
* Add a GUC variable to warn about non-standard SQL usage in queries
|
* Add a GUC variable to warn about non-standard SQL usage in queries
|
||||||
* Add SQL-standard MERGE/REPLACE/UPSERT command
|
* Add SQL-standard MERGE/REPLACE/UPSERT command
|
||||||
|
|
||||||
@ -658,8 +666,6 @@ SQL Commands
|
|||||||
* Add column to pg_stat_activity that shows the progress of long-running
|
* Add column to pg_stat_activity that shows the progress of long-running
|
||||||
commands like CREATE INDEX and VACUUM
|
commands like CREATE INDEX and VACUUM
|
||||||
* Implement SQL:2003 window functions
|
* Implement SQL:2003 window functions
|
||||||
* Improve failure message when DROP DATABASE is used on a database that
|
|
||||||
has prepared transactions
|
|
||||||
* Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause
|
* Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause
|
||||||
|
|
||||||
http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php
|
http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
|
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
|
||||||
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
|
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
|
||||||
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
|
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
|
||||||
Last updated: Thu Apr 24 13:32:33 EDT 2008
|
Last updated: Thu Apr 24 14:22:49 EDT 2008
|
||||||
</p>
|
</p>
|
||||||
<p>The most recent version of this document can be viewed at<br/>
|
<p>The most recent version of this document can be viewed at<br/>
|
||||||
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
|
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
|
||||||
@ -526,6 +526,13 @@ first. There is also a developer's wiki at<br/>
|
|||||||
</p>
|
</p>
|
||||||
</li><li>Improve logging of prepared transactions recovered during startup
|
</li><li>Improve logging of prepared transactions recovered during startup
|
||||||
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php">http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php</a>
|
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php">http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php</a>
|
||||||
|
</p>
|
||||||
|
</li><li>Improve failure message when DROP DATABASE is used on a database that
|
||||||
|
has prepared transactions
|
||||||
|
</li><li>Allow prepared transactions with temporary tables created and dropped
|
||||||
|
in the same transaction, and when an ON COMMIT DELETE ROWS temporary
|
||||||
|
table is accessed
|
||||||
|
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2008-03/msg00047.php">http://archives.postgresql.org/pgsql-hackers/2008-03/msg00047.php</a>
|
||||||
</p>
|
</p>
|
||||||
</li><li>Add a GUC variable to warn about non-standard SQL usage in queries
|
</li><li>Add a GUC variable to warn about non-standard SQL usage in queries
|
||||||
</li><li>Add SQL-standard MERGE/REPLACE/UPSERT command
|
</li><li>Add SQL-standard MERGE/REPLACE/UPSERT command
|
||||||
@ -577,8 +584,6 @@ first. There is also a developer's wiki at<br/>
|
|||||||
</li><li>Add column to pg_stat_activity that shows the progress of long-running
|
</li><li>Add column to pg_stat_activity that shows the progress of long-running
|
||||||
commands like CREATE INDEX and VACUUM
|
commands like CREATE INDEX and VACUUM
|
||||||
</li><li>Implement SQL:2003 window functions
|
</li><li>Implement SQL:2003 window functions
|
||||||
</li><li>Improve failure message when DROP DATABASE is used on a database that
|
|
||||||
has prepared transactions
|
|
||||||
</li><li>Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause
|
</li><li>Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause
|
||||||
<p> <a href="http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php">http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php</a>
|
<p> <a href="http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php">http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php</a>
|
||||||
<a href="http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php">http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php</a>
|
<a href="http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php">http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php</a>
|
||||||
|
Reference in New Issue
Block a user