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
8eee526c
Commit
8eee526c
authored
May 28, 2008
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set hidden field for guc enum missed in previous commit.
parent
d88cd7db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+7
-7
No files found.
src/backend/access/transam/xlog.c
View file @
8eee526c
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.31
1 2008/05/17 17:24:57 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.31
2 2008/05/28 15:22:05 mha
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -88,20 +88,20 @@ bool XLOG_DEBUG = false;
* GUC support
*/
const
struct
config_enum_entry
sync_method_options
[]
=
{
{
"fsync"
,
SYNC_METHOD_FSYNC
},
{
"fsync"
,
SYNC_METHOD_FSYNC
,
false
},
#ifdef HAVE_FSYNC_WRITETHROUGH
{
"fsync_writethrough"
,
SYNC_METHOD_FSYNC_WRITETHROUGH
},
{
"fsync_writethrough"
,
SYNC_METHOD_FSYNC_WRITETHROUGH
,
false
},
#endif
#ifdef HAVE_FDATASYNC
{
"fdatasync"
,
SYNC_METHOD_FDATASYNC
},
{
"fdatasync"
,
SYNC_METHOD_FDATASYNC
,
false
},
#endif
#ifdef OPEN_SYNC_FLAG
{
"open_sync"
,
SYNC_METHOD_OPEN
},
{
"open_sync"
,
SYNC_METHOD_OPEN
,
false
},
#endif
#ifdef OPEN_DATASYNC_FLAG
{
"open_datasync"
,
SYNC_METHOD_OPEN_DSYNC
},
{
"open_datasync"
,
SYNC_METHOD_OPEN_DSYNC
,
false
},
#endif
{
NULL
,
0
}
{
NULL
,
0
,
false
}
};
/*
...
...
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