Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8eee526

Browse files
committed
Set hidden field for guc enum missed in previous commit.
1 parentd88cd7d commit8eee526

File tree

1 file changed

+7
-7
lines changed
  • src/backend/access/transam

1 file changed

+7
-7
lines changed

‎src/backend/access/transam/xlog.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.311 2008/05/17 17:24:57 tgl Exp $
10+
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.312 2008/05/28 15:22:05 mha Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -88,20 +88,20 @@ boolXLOG_DEBUG = false;
8888
* GUC support
8989
*/
9090
conststructconfig_enum_entrysync_method_options[]= {
91-
{"fsync",SYNC_METHOD_FSYNC},
91+
{"fsync",SYNC_METHOD_FSYNC, false},
9292
#ifdefHAVE_FSYNC_WRITETHROUGH
93-
{"fsync_writethrough",SYNC_METHOD_FSYNC_WRITETHROUGH},
93+
{"fsync_writethrough",SYNC_METHOD_FSYNC_WRITETHROUGH, false},
9494
#endif
9595
#ifdefHAVE_FDATASYNC
96-
{"fdatasync",SYNC_METHOD_FDATASYNC},
96+
{"fdatasync",SYNC_METHOD_FDATASYNC, false},
9797
#endif
9898
#ifdefOPEN_SYNC_FLAG
99-
{"open_sync",SYNC_METHOD_OPEN},
99+
{"open_sync",SYNC_METHOD_OPEN, false},
100100
#endif
101101
#ifdefOPEN_DATASYNC_FLAG
102-
{"open_datasync",SYNC_METHOD_OPEN_DSYNC},
102+
{"open_datasync",SYNC_METHOD_OPEN_DSYNC, false},
103103
#endif
104-
{NULL,0}
104+
{NULL,0, false}
105105
};
106106

107107
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp