summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPavan Deolasee2011-05-04 11:13:02 +0000
committerPavan Deolasee2011-06-17 08:56:51 +0000
commitb72426e3b1c0c13cd710781a1ff6fd65a96e82d8 (patch)
treef95aba7ad29c2fdfe1c2a4a192598a19c693b0f6 /src/include
parent9db03183fe491e60dda1a6a5b36b44c55149e077 (diff)
WAL log the barrier creation activity on the local coordinator. Also fix some of
the bugs in the recovery code. This code was not tasted previously and there were some changes after the 9.0 merge
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/xlog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h
index 27e7f404d8..f276a1f078 100644
--- a/src/include/access/xlog.h
+++ b/src/include/access/xlog.h
@@ -184,7 +184,8 @@ typedef enum
{
RECOVERY_TARGET_UNSET,
RECOVERY_TARGET_XID,
- RECOVERY_TARGET_TIME
+ RECOVERY_TARGET_TIME,
+ RECOVERY_TARGET_BARRIER
} RecoveryTargetType;
extern XLogRecPtr XactLastRecEnd;