pgsql: Fix copy & paste mistake in pg_get_replication_slots().

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix copy & paste mistake in pg_get_replication_slots().
Date: 2015-08-10 11:29:20
Message-ID: E1ZOlGa-0001pP-JG@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix copy & paste mistake in pg_get_replication_slots().

XLogRecPtr was compared with InvalidTransactionId instead of
InvalidXLogRecPtr. As both are defined to the same value this doesn't
cause any actual problems, but it's still wrong.

Backpatch: 9.4-master, bug was introduced in 9.4

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/5c4b25accebb5d35358bb0c19b841d8d9b064e46

Modified Files
--------------
src/backend/replication/slotfuncs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2015-08-10 11:29:22 pgsql: Don't start to stream after pg_receivexlog --create-slot.
Previous Message Christoph Berg 2015-08-10 11:00:38 Using contrib modules in check (Re: pgsql: Fix BRIN to use SnapshotAny during summarization)