pgsql: On Windows, when a file is deleted and another process still has - Mailing list pgsql-committers

From heikki@postgresql.org (Heikki Linnakangas)
Subject pgsql: On Windows, when a file is deleted and another process still has
Date
Msg-id 20090910094332.BEEB2753FB7@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
On Windows, when a file is deleted and another process still has an open
file handle on it, the file goes into "pending deletion" state where it
still shows up in directory listing, but isn't accessible otherwise. That
confuses RemoveOldXLogFiles(), making it think that the file hasn't been
archived yet, while it actually was, and it was deleted along with the .done
file.

Fix that by renaming the file with ".deleted" extension before deleting it.
Also check the return value of rename() and unlink(), so that if the removal
fails for any reason (e.g another process is holding the file locked), we
don't delete the .done file until the WAL file is really gone.

Backpatch to 8.2, which is the oldest version supported on Windows.

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
    pgsql/src/backend/access/transam:
        xlog.c (r1.258.2.5 -> r1.258.2.6)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c?r1=1.258.2.5&r2=1.258.2.6)

pgsql-committers by date:

Previous
From: heikki@postgresql.org (Heikki Linnakangas)
Date:
Subject: pgsql: On Windows, when a file is deleted and another process still has
Next
From: ishii@postgresql.org (Tatsuo Ishii)
Date:
Subject: pgsql: pgbench has #defines for number of branches, tellers, and