pgsql: Revert "Fix issues with Windows' stat() for files pending on del - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Revert "Fix issues with Windows' stat() for files pending on del
Date
Msg-id E1m2omU-00062G-O9@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Revert "Fix issues with Windows' stat() for files pending on deletion"

This reverts commit 54fb8c7, as per the issues reported by fairywren
when it comes to MinGW because of the lack of microsoft_native_stat()
there.  Using just stat() for MSVC is not sufficient to take care of the
concurrency problems with files pending on deletion.  It may be possible
to paint some __MINGW64__ in the code to switch to a different
implementation of stat() in this build context, but I am not sure either
if relying on the implementation of stat() in MinGW to take care of the
problems we are trying to fix is enough or not.  So this needs more
study.

Discussion: https://postgr.es/m/YOvOlfRrIO0yGtgw@paquier.xyz
Backpatch-through: 14

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2c9b46c090e76c62f24563b9be2c34e6b92e9329

Modified Files
--------------
src/port/open.c      |   4 +-
src/port/win32stat.c | 177 +++++++++++++++++++++++++++++++++++++--------------
2 files changed, 132 insertions(+), 49 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Fix issues with Windows' stat() for files pending on deletion
Next
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Make release note entries more accurate