aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/xlog.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-11-15 02:44:57 +0000
committerBruce Momjian <bruce@momjian.us>2002-11-15 02:44:57 +0000
commit2986aa6a668bce3cfb83606bb52e9d01ae66ad6c (patch)
tree52b950f9d8ae7775cd24067866ecf1a0e265e821 /src/include/access/xlog.h
parent3779f7fd9fed8e77cb02a3ef26ab4311906377ad (diff)
downloadpostgresql-2986aa6a668bce3cfb83606bb52e9d01ae66ad6c.tar.gz
postgresql-2986aa6a668bce3cfb83606bb52e9d01ae66ad6c.zip
Add checkpoint_warning to warn of excessive checkpoints caused by too
few WAL files.
Diffstat (limited to 'src/include/access/xlog.h')
-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 f5c3e59cbce..1659c65b930 100644
--- a/src/include/access/xlog.h
+++ b/src/include/access/xlog.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: xlog.h,v 1.39 2002/09/26 22:58:34 tgl Exp $
+ * $Id: xlog.h,v 1.40 2002/11/15 02:44:57 momjian Exp $
*/
#ifndef XLOG_H
#define XLOG_H
@@ -184,6 +184,7 @@ extern XLogRecPtr ProcLastRecEnd;
/* these variables are GUC parameters related to XLOG */
extern int CheckPointSegments;
+extern int CheckPointWarning;
extern int XLOGbuffers;
extern int XLOG_DEBUG;
extern char *XLOG_sync_method;