pgsql: Fix pg_plan_queries() to restore the previous setting of - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Fix pg_plan_queries() to restore the previous setting of
Date
Msg-id 20080312235828.1EEF2753336@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Fix pg_plan_queries() to restore the previous setting of ActiveSnapshot
(probably NULL) before exiting.  Up to now it's just left the variable as it
set it, which means that after we're done processing the current client
message, ActiveSnapshot is probably pointing at garbage (because this function
is typically run in MessageContext which will get reset).  There doesn't seem
to have been any code path in which that mattered before 8.3, but now the
plancache module might try to use the stale value if the next client message
is a Bind for a prepared statement that is in need of replanning.  Per report
from Alex Hunsaker.

Modified Files:
--------------
    pgsql/src/backend/tcop:
        postgres.c (r1.544 -> r1.545)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tcop/postgres.c?r1=1.544&r2=1.545)

pgsql-committers by date:

Previous
From: momjian@postgresql.org (Bruce Momjian)
Date:
Subject: pgsql: Add psql TODO: < * Include the symbolic SQLSTATE name in verbose
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Fix pg_plan_queries() to restore the previous setting of