Thread: pgsql: Correctly init/deinit recovery xact environment.

pgsql: Correctly init/deinit recovery xact environment.

From
Simon Riggs
Date:
Correctly init/deinit recovery xact environment.
Previously we performed VirtualXactLockTableInsert
but didn't set MyProc->lxid for Startup process.
pg_locks now correctly shows "1/1" for vxid
of Startup process during Hot Standby.
At end of Hot Standby the Virtual Transaction
was not deleted, leading to problems after
promoting to normal running for some commands,
such as CREATE INDEX CONCURRENTLY.

Branch
------
REL9_1_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/6f9a9da85c9015e773d12e8571c469e5a2a6b3fb

Modified Files
--------------
src/backend/storage/ipc/standby.c |    9 ++++++++-
src/backend/storage/lmgr/lmgr.c   |   18 ++++++++++++++++++
src/include/storage/lmgr.h        |    1 +
3 files changed, 27 insertions(+), 1 deletions(-)