diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-06-07 01:59:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-06-07 01:59:39 +0000 |
commit | 0f011f6daae65963cc29a1208bf662a7c13056c3 (patch) | |
tree | e4825abcc320c8956792b4cbdee33a64de66d19b | |
parent | 1b000116fb7264d94f428dbfe658048546ba45e6 (diff) | |
download | postgresql-0f011f6daae65963cc29a1208bf662a7c13056c3.tar.gz postgresql-0f011f6daae65963cc29a1208bf662a7c13056c3.zip |
Update text for RESET CONNECTION:
< all temporary tables, removal of any NOTIFYs, cursors, prepared
< queries(?), currval()s, etc. This could be used for connection pooling.
< We could also change RESET ALL to have this functionality.
> temporary tables, removing any NOTIFYs, cursors, open transactions,
> prepared queries, currval()s, etc. This could be used for connection
> pooling. We could also change RESET ALL to have this functionality.
> The difficult of this features is allowing RESET ALL to not affect
> changes made by the interface driver for its internal use. One idea is
> for this to be a protocol-only feature. Another approach is to notify
> the protocol when a RESET CONNECTION command is used.
-rw-r--r-- | doc/TODO | 12 | ||||
-rw-r--r-- | doc/src/FAQ/TODO.html | 12 |
2 files changed, 16 insertions, 8 deletions
@@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Mon Jun 6 18:03:40 EDT 2005 +Last updated: Mon Jun 6 21:59:31 EDT 2005 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -454,9 +454,13 @@ Commands * Add RESET CONNECTION command to reset all session state This would include resetting of all variables (RESET ALL), dropping of - all temporary tables, removal of any NOTIFYs, cursors, prepared - queries(?), currval()s, etc. This could be used for connection pooling. - We could also change RESET ALL to have this functionality. + temporary tables, removing any NOTIFYs, cursors, open transactions, + prepared queries, currval()s, etc. This could be used for connection + pooling. We could also change RESET ALL to have this functionality. + The difficult of this features is allowing RESET ALL to not affect + changes made by the interface driver for its internal use. One idea is + for this to be a protocol-only feature. Another approach is to notify + the protocol when a RESET CONNECTION command is used. * Allow FOR UPDATE queries to do NOWAIT locks * Add GUC to issue notice about queries that use unjoined tables diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index eb6f7fa2556..f5d004d6d30 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@ <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <h1><a name="section_1">PostgreSQL TODO List</a></h1> <p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/> -Last updated: Mon Jun 6 18:03:40 EDT 2005 +Last updated: Mon Jun 6 21:59:31 EDT 2005 </p> <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>. @@ -417,9 +417,13 @@ first. </li><li>Make row-wise comparisons work per SQL spec </li><li>Add RESET CONNECTION command to reset all session state <p> This would include resetting of all variables (RESET ALL), dropping of - all temporary tables, removal of any NOTIFYs, cursors, prepared - queries(?), currval()s, etc. This could be used for connection pooling. - We could also change RESET ALL to have this functionality. + temporary tables, removing any NOTIFYs, cursors, open transactions, + prepared queries, currval()s, etc. This could be used for connection + pooling. We could also change RESET ALL to have this functionality. + The difficult of this features is allowing RESET ALL to not affect + changes made by the interface driver for its internal use. One idea is + for this to be a protocol-only feature. Another approach is to notify + the protocol when a RESET CONNECTION command is used. </p> </li><li>Allow FOR UPDATE queries to do NOWAIT locks </li><li>Add GUC to issue notice about queries that use unjoined tables |