pgsql: Don't abort pg_basebackup when receiving empty WAL block

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Don't abort pg_basebackup when receiving empty WAL block
Date: 2013-11-11 14:01:00
Message-ID: E1Vfs32-0001Ke-RE@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't abort pg_basebackup when receiving empty WAL block

This is a similar fix as c6ec8793aa59d1842082e14b4b4aae7d4bd883fd
9.2. This should never happen in 9.3 and newer since the special case
cannot happen there, but this patch synchronizes up the code so there
is no confusion on why they're different. An empty block is as harmless
in 9.3 as it was in 9.2, and can safely be ignored.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/705556a631c5908cd3caa0b973be13d994ff63e7

Modified Files
--------------
src/bin/pg_basebackup/receivelog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2013-11-11 15:26:18 Re: pgsql: Fix whitespace issues found by git diff --check, add gitattribut
Previous Message Thom Brown 2013-11-11 13:48:04 Re: pgsql: doc: Clarify under what circumstances pg_dump needs superuser ac