diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-04-25 14:31:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-04-25 14:31:03 +0000 |
commit | 2b700935485d5d36d048a239f6da736f382d298b (patch) | |
tree | f5aef776632485729dd7ac6756f7340b9ef2b045 /doc/src | |
parent | 59d591e79a4a2b5716ee9f52a1bc522eb629543d (diff) | |
download | postgresql-2b700935485d5d36d048a239f6da736f382d298b.tar.gz postgresql-2b700935485d5d36d048a239f6da736f382d298b.zip |
RESET SESSION is more precise:
< * Add RESET CONNECTION command to reset all session state
> * Add RESET SESSION command to reset all session state
447c447
< notify the protocol when a RESET CONNECTION command is used.
> notify the protocol when a RESET SESSION command is used.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/FAQ/TODO.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index f7ac2693497..0bd124634d5 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 Apr 24 22:58:22 EDT 2006 +Last updated: Tue Apr 25 10:30:50 EDT 2006 </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>. @@ -400,7 +400,7 @@ first. the SQL standard requires it to be processed as a column-by-column comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'. </p> - </li><li>Add RESET CONNECTION command to reset all session state + </li><li>Add RESET SESSION command to reset all session state <p> This would include resetting of all variables (RESET ALL), dropping of temporary tables, removing any NOTIFYs, cursors, open transactions, prepared queries, currval()s, etc. This could be used for connection @@ -408,7 +408,7 @@ first. 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. + notify the protocol when a RESET SESSION command is used. </p> </li><li>Add GUC to issue notice about statements that use unjoined tables </li><li>Allow EXPLAIN to identify tables that were skipped because of |