diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-30 01:47:33 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-30 01:47:33 +0000 |
commit | 741510521caea7e1ca12b4db0701bbc2db346a5f (patch) | |
tree | d26b28fc9215dd82b038f9c3d51925a6e7e65e1f /src/include/access/xlog.h | |
parent | 680b7357ce850c28d06997be793aee18f72434ba (diff) |
XLOG stuff for sequences.
CommitDelay in guc.c
Diffstat (limited to 'src/include/access/xlog.h')
-rw-r--r-- | src/include/access/xlog.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 4654296e116..785ac94c9b2 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -3,7 +3,7 @@ * * PostgreSQL transaction log manager * - * $Header: /cvsroot/pgsql/src/include/access/xlog.h,v 1.11 2000/11/25 20:33:53 tgl Exp $ + * $Header: /cvsroot/pgsql/src/include/access/xlog.h,v 1.12 2000/11/30 01:47:32 vadim Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -54,6 +54,12 @@ typedef struct XLogSubRecord #define XLR_TO_BE_CONTINUED 0x01 #define XLR_INFO_MASK 0x0F +/* + * Sometimes we log records which are out of transaction control. + * Rmgr may use flag below for this purpose. + */ +#define XLOG_NO_TRAN XLR_INFO_MASK + #define XLOG_PAGE_MAGIC 0x17345168 typedef struct XLogPageHeaderData |