diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2011-11-02 08:07:44 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2011-11-02 08:07:44 +0000 |
commit | f8409b39d1dae28f063b378b9edee1a657845503 (patch) | |
tree | 1a74543e730865be28c65edd2c49760269d02502 /src/include/access/clog.h | |
parent | c2891b46a4b04b80e1fe28ad0bfd75b40e97ea3e (diff) | |
download | postgresql-f8409b39d1dae28f063b378b9edee1a657845503.tar.gz postgresql-f8409b39d1dae28f063b378b9edee1a657845503.zip |
Fix timing of Startup CLOG and MultiXact during Hot Standby
Patch by me, bug report by Chris Redekop, analysis by Florian Pflug
Diffstat (limited to 'src/include/access/clog.h')
-rw-r--r-- | src/include/access/clog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/access/clog.h b/src/include/access/clog.h index 7a8918e0fc5..691430c97ca 100644 --- a/src/include/access/clog.h +++ b/src/include/access/clog.h @@ -40,6 +40,7 @@ extern Size CLOGShmemSize(void); extern void CLOGShmemInit(void); extern void BootStrapCLOG(void); extern void StartupCLOG(void); +extern void TrimCLOG(void); extern void ShutdownCLOG(void); extern void CheckPointCLOG(void); extern void ExtendCLOG(TransactionId newestXact); |