pgsql: Fix a couple of problems pointed out by Fujii Masao in the - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Fix a couple of problems pointed out by Fujii Masao in the
Date
Msg-id 20080908164216.2FB7D7545A3@cvs.postgresql.org
Whole thread Raw
Responses Re: pgsql: Fix a couple of problems pointed out by Fujii Masao in the  (Simon Riggs <simon@2ndQuadrant.com>)
List pgsql-committers
Log Message:
-----------
Fix a couple of problems pointed out by Fujii Masao in the 2008-Apr-05 patch
for pg_stop_backup.  First, it is possible that the history file name is not
alphabetically later than the last WAL file name, so we should explicitly
check that both have been archived.  Second, the previous coding would wait
forever if a checkpoint had managed to remove the WAL file before we look for
it.

Simon Riggs, plus some code cleanup by me.

Modified Files:
--------------
    pgsql/src/backend/access/transam:
        xlog.c (r1.317 -> r1.318)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c?r1=1.317&r2=1.318)

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Make pg_dump --data-only try to order the table dumps so that
Next
From: Simon Riggs
Date:
Subject: Re: pgsql: Fix a couple of problems pointed out by Fujii Masao in the