mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Remove wal_sync_method=fsync_writethrough on Windows.
The "fsync" level already flushes drive write caches on Windows (as does "fdatasync"), so it only confuses matters to have an apparently higher level that isn't actually different at all. That leaves "fsync_writethrough" only for macOS, where it actually does something different. Reviewed-by: Magnus Hagander <magnus@hagander.net> Discussion: https://postgr.es/m/CA%2BhUKGJ2CG2SouPv2mca2WCTOJxYumvBARRcKPraFMB6GSEMcA%40mail.gmail.com
This commit is contained in:
@ -399,7 +399,7 @@ pg_fsync(int fd)
|
||||
#endif
|
||||
|
||||
/* #if is to skip the sync_method test if there's no need for it */
|
||||
#if defined(HAVE_FSYNC_WRITETHROUGH) && !defined(FSYNC_WRITETHROUGH_IS_FSYNC)
|
||||
#if defined(HAVE_FSYNC_WRITETHROUGH)
|
||||
if (sync_method == SYNC_METHOD_FSYNC_WRITETHROUGH)
|
||||
return pg_fsync_writethrough(fd);
|
||||
else
|
||||
@ -437,9 +437,7 @@ pg_fsync_writethrough(int fd)
|
||||
{
|
||||
if (enableFsync)
|
||||
{
|
||||
#ifdef WIN32
|
||||
return _commit(fd);
|
||||
#elif defined(F_FULLFSYNC)
|
||||
#if defined(F_FULLFSYNC)
|
||||
return (fcntl(fd, F_FULLFSYNC, 0) == -1) ? -1 : 0;
|
||||
#else
|
||||
errno = ENOSYS;
|
||||
|
Reference in New Issue
Block a user