File tree 4 files changed +9
-7
lines changed
4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
# -*-makefile-*-
2
- # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.111 2000/11/09 18 :18:42 petere Exp $
2
+ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.112 2000/11/20 05 :18:38 vadim Exp $
3
3
4
4
# ------------------------------------------------------------------------------
5
5
# All PostgreSQL makefiles include this file and use the variables it sets,
@@ -146,6 +146,8 @@ ifeq ($(GCC), yes)
146
146
CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
147
147
endif
148
148
149
+ CFLAGS += -DXLOG
150
+
149
151
CXX = @CXX@
150
152
GXX = @GXX@
151
153
CXXFLAGS = @CXXFLAGS@
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.27 2000/11/16 06:16:00 momjian Exp $
9
+ * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.28 2000/11/20 05:18:39 vadim Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -42,7 +42,7 @@ void CreateCheckPoint(bool shutdown);
42
42
43
43
char XLogDir [MAXPGPATH ];
44
44
char ControlFilePath [MAXPGPATH ];
45
- int XLOGbuffers = 0 ;
45
+ int XLOGbuffers = 8 ;
46
46
XLogRecPtr MyLastRecPtr = {0 , 0 };
47
47
bool StopIfError = false;
48
48
bool InRecovery = false;
Original file line number Diff line number Diff line change 4
4
* Support for grand unified configuration scheme, including SET
5
5
* command, configuration file, and command line options.
6
6
*
7
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.21 2000/11/15 18:36:05 petere Exp $
7
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.22 2000/11/20 05: 18:39 vadim Exp $
8
8
*
9
9
* Copyright 2000 by PostgreSQL Global Development Group
10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -270,7 +270,7 @@ ConfigureNamesInt[] =
270
270
300 , 30 , 1800 },
271
271
272
272
{"wal_buffers" , PGC_POSTMASTER , & XLOGbuffers ,
273
- 4 , 4 , INT_MAX },
273
+ 8 , 4 , INT_MAX },
274
274
275
275
{"wal_debug" , PGC_POSTMASTER , & XLOG_DEBUG ,
276
276
0 , 0 , 16 },
Original file line number Diff line number Diff line change 37
37
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
38
38
* Portions Copyright (c) 1994, Regents of the University of California
39
39
*
40
- * $Id: catversion.h,v 1.60 2000/11/14 18:37:46 tgl Exp $
40
+ * $Id: catversion.h,v 1.61 2000/11/20 05: 18:40 vadim Exp $
41
41
*
42
42
*-------------------------------------------------------------------------
43
43
*/
53
53
*/
54
54
55
55
/* yyyymmddN */
56
- #define CATALOG_VERSION_NO 200011131
56
+ #define CATALOG_VERSION_NO 200011191
57
57
58
58
#endif
You can’t perform that action at this time.
0 commit comments