Skip to content

Commit 8eee526

Browse files
committed
Set hidden field for guc enum missed in previous commit.
1 parent d88cd7d commit 8eee526

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 @@ bool XLOG_DEBUG = false;
8888
* GUC support
8989
*/
9090
const struct config_enum_entry sync_method_options[] = {
91-
{"fsync", SYNC_METHOD_FSYNC},
91+
{"fsync", SYNC_METHOD_FSYNC, false},
9292
#ifdef HAVE_FSYNC_WRITETHROUGH
93-
{"fsync_writethrough", SYNC_METHOD_FSYNC_WRITETHROUGH},
93+
{"fsync_writethrough", SYNC_METHOD_FSYNC_WRITETHROUGH, false},
9494
#endif
9595
#ifdef HAVE_FDATASYNC
96-
{"fdatasync", SYNC_METHOD_FDATASYNC},
96+
{"fdatasync", SYNC_METHOD_FDATASYNC, false},
9797
#endif
9898
#ifdef OPEN_SYNC_FLAG
99-
{"open_sync", SYNC_METHOD_OPEN},
99+
{"open_sync", SYNC_METHOD_OPEN, false},
100100
#endif
101101
#ifdef OPEN_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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy