pgsql: Update text for RESET CONNECTION: < all temporary tables, - Mailing list pgsql-committers

From momjian@svr1.postgresql.org (Bruce Momjian)
Subject pgsql: Update text for RESET CONNECTION: < all temporary tables,
Date
Msg-id 20050607015940.1118A5282B@svr1.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
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.

Modified Files:
--------------
    pgsql/doc:
        TODO (r1.1553 -> r1.1554)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1553&r2=1.1554)
    pgsql/doc/src/FAQ:
        TODO.html (r1.60 -> r1.61)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/TODO.html.diff?r1=1.60&r2=1.61)

pgsql-committers by date:

Previous
From: momjian@svr1.postgresql.org (Bruce Momjian)
Date:
Subject: pgsql: Ipcrm -> ipcclean in error message:
Next
From: neilc@svr1.postgresql.org (Neil Conway)
Date:
Subject: pgsql: Add support for an optional INTO clause to PL/PgSQL's EXECUTE