Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a221d95f
Commit
a221d95f
authored
Nov 20, 2000
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile WAL by default.
parent
f084a18a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
+9
-7
src/Makefile.global.in
src/Makefile.global.in
+3
-1
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+2
-2
No files found.
src/Makefile.global.in
View file @
a221d95f
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.11
1 2000/11/09 18:18:42 petere
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.11
2 2000/11/20 05:18:38 vadim
Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -146,6 +146,8 @@ ifeq ($(GCC), yes)
CFLAGS
+=
-Wall
-Wmissing-prototypes
-Wmissing-declarations
endif
CFLAGS
+=
-DXLOG
CXX
=
@CXX@
GXX
=
@GXX@
CXXFLAGS
=
@CXXFLAGS@
...
...
src/backend/access/transam/xlog.c
View file @
a221d95f
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.2
7 2000/11/16 06:16:00 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.2
8 2000/11/20 05:18:39 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -42,7 +42,7 @@ void CreateCheckPoint(bool shutdown);
char
XLogDir
[
MAXPGPATH
];
char
ControlFilePath
[
MAXPGPATH
];
int
XLOGbuffers
=
0
;
int
XLOGbuffers
=
8
;
XLogRecPtr
MyLastRecPtr
=
{
0
,
0
};
bool
StopIfError
=
false
;
bool
InRecovery
=
false
;
...
...
src/backend/utils/misc/guc.c
View file @
a221d95f
...
...
@@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.2
1 2000/11/15 18:36:05 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.2
2 2000/11/20 05:18:39 vadim
Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
@@ -270,7 +270,7 @@ ConfigureNamesInt[] =
300
,
30
,
1800
},
{
"wal_buffers"
,
PGC_POSTMASTER
,
&
XLOGbuffers
,
4
,
4
,
INT_MAX
},
8
,
4
,
INT_MAX
},
{
"wal_debug"
,
PGC_POSTMASTER
,
&
XLOG_DEBUG
,
0
,
0
,
16
},
...
...
src/include/catalog/catversion.h
View file @
a221d95f
...
...
@@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: catversion.h,v 1.6
0 2000/11/14 18:37:46 tgl
Exp $
* $Id: catversion.h,v 1.6
1 2000/11/20 05:18:40 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 2000111
3
1
#define CATALOG_VERSION_NO 2000111
9
1
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment