diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-10-13 01:03:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-10-13 01:03:11 +0000 |
commit | b8c06a66450e9ec32ab0db745ce9047c4796e2a0 (patch) | |
tree | a4f5b57cc5e90c4a666215a68de32dc5f4e79ca7 | |
parent | 90542f556b151bcb3c467bd8db6d3a4609f82a12 (diff) | |
download | postgresql-b8c06a66450e9ec32ab0db745ce9047c4796e2a0.tar.gz postgresql-b8c06a66450e9ec32ab0db745ce9047c4796e2a0.zip |
Add:
> * Add RESET CONNECTION command to reset all session state
329a331,334
> This would include resetting of all variables (RESET ALL), dropping of
> all temporary tables, removal of any NOTIFYs, etc. This could be used
> for connection pooling. We could also change RESET ALL to have this
> functionality.
-rw-r--r-- | doc/TODO | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -5,7 +5,7 @@ TODO list for PostgreSQL Bracketed items "[]" have more detail. Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Fri Oct 8 21:28:58 EDT 2004 +Last updated: Tue Oct 12 21:03:05 EDT 2004 The most recent version of this document can be viewed at the PostgreSQL web site, http://www.PostgreSQL.org. @@ -326,7 +326,12 @@ Commands to be automatically ignored. * Make row-wise comparisons work per SQL spec +* 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, etc. This could be used + for connection pooling. We could also change RESET ALL to have this + functionality. * ALTER o Have ALTER TABLE RENAME rename SERIAL sequence names |