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

Commit262fbcb

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 parent30ba0d0 commit262fbcb

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
@@ -2015,7 +2015,7 @@ pre_sync_fname(char *fname, bool isdir)
20152015
{
20162016
intfd;
20172017

2018-
fd=open(fname,O_RDONLY |PG_BINARY);
2018+
fd=BasicOpenFile(fname,O_RDONLY |PG_BINARY,0);
20192019

20202020
/*
20212021
* Some OSs don't allow us to open directories at all (Windows returns
@@ -2074,7 +2074,7 @@ walkdir(char *path, void (*action) (char *fname, bool isdir))
20742074
#ifndefWIN32
20752075
elseif (S_ISLNK(fst.st_mode))
20762076
#else
2077-
elseif (pg_win32_is_junction(subpath))
2077+
elseif (pgwin32_is_junction(subpath))
20782078
#endif
20792079
{
20802080
#if defined(HAVE_READLINK)|| defined(WIN32)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp