diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-18 20:18:59 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-18 20:18:59 +0000 |
commit | af6e88a9cfefcb1549a61ed7642c9837599fd0a7 (patch) | |
tree | 44fd66c2b8ee43508f030c85e36e1bb0dce9e083 /src/include/catalog/pg_control.h | |
parent | ddc5bc958aa637206461318e7467cfb6c41b52c2 (diff) | |
download | postgresql-af6e88a9cfefcb1549a61ed7642c9837599fd0a7.tar.gz postgresql-af6e88a9cfefcb1549a61ed7642c9837599fd0a7.zip |
Remove NEXTXID xlog record type to avoid three-way deadlock risk.
NEXTXID isn't really necessary, per previous discussion in pghackers,
but I mulishy insisted we should put it in anyway. Mea culpa.
Diffstat (limited to 'src/include/catalog/pg_control.h')
-rw-r--r-- | src/include/catalog/pg_control.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 97d0e13e783..4dcb120469b 100644 --- a/src/include/catalog/pg_control.h +++ b/src/include/catalog/pg_control.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_control.h,v 1.1 2001/03/13 01:17:06 tgl Exp $ + * $Id: pg_control.h,v 1.2 2001/03/18 20:18:59 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,7 +45,6 @@ typedef struct CheckPoint /* XLOG info values for XLOG rmgr */ #define XLOG_CHECKPOINT_SHUTDOWN 0x00 #define XLOG_CHECKPOINT_ONLINE 0x10 -#define XLOG_NEXTXID 0x20 #define XLOG_NEXTOID 0x30 |