Skip to content

Commit 456ff08

Browse files
committed
Fix some problems with patch to fsync the data directory.
pg_win32_is_junction() was a typo for pgwin32_is_junction(). open() was used not only in a two-argument form, which breaks on Windows, but also where BasicOpenFile() should have been used. Per reports from Andrew Dunstan and David Rowley.
1 parent c0574cd commit 456ff08

File tree

1 file changed

+2
-2
lines changed
  • src/backend/storage/file

1 file changed

+2
-2
lines changed

src/backend/storage/file/fd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2450,7 +2450,7 @@ pre_sync_fname(char *fname, bool isdir)
24502450
{
24512451
int fd;
24522452

2453-
fd = open(fname, O_RDONLY | PG_BINARY);
2453+
fd = BasicOpenFile(fname, O_RDONLY | PG_BINARY, 0);
24542454

24552455
/*
24562456
* Some OSs don't allow us to open directories at all (Windows returns
@@ -2509,7 +2509,7 @@ walkdir(char *path, void (*action) (char *fname, bool isdir))
25092509
#ifndef WIN32
25102510
else if (S_ISLNK(fst.st_mode))
25112511
#else
2512-
else if (pg_win32_is_junction(subpath))
2512+
else if (pgwin32_is_junction(subpath))
25132513
#endif
25142514
{
25152515
#if defined(HAVE_READLINK) || defined(WIN32)

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