mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Avoid file descriptor leak in pg_test_fsync.
This can cause problems on Windows, where files that are still open can't be unlinked. Jeff Janes
This commit is contained in:
parent
f6fb7fb17d
commit
8cf825974c
@ -260,8 +260,6 @@ test_sync(int writes_per_op)
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((tmpfile = open(filename, O_RDWR | O_DSYNC | PG_O_DIRECT, 0)) == -1)
|
||||
die("could not open output file");
|
||||
START_TIMER;
|
||||
for (ops = 0; alarm_triggered == false; ops++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user