A couple logical decoding fixes/patches - Mailing list pgsql-hackers

From Andres Freund
Subject A couple logical decoding fixes/patches
Date
Msg-id 20140508162900.GA5556@awork2.anarazel.de
Whole thread Raw
Responses Re: A couple logical decoding fixes/patches
List pgsql-hackers
Hi,

Patch 01: Fix a couple of embarassing typos. Most of them harmless, but
one isn't and can lead to crashing or decoding wrong data.

Patch 02: Don't crash with an Assert() failure if wal_level=logical but
max_replication_slots=0.

Patch 03: Add valgrind suppression for writing out padding bytes. That's
better than zeroing the data from the get go because unitialized
accesses are still detected.

Details are in the commit messages of the individual patches.

Greetings,

Andres Freund

--
 Andres Freund                       http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services

Attachment

pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: PQputCopyEnd doesn't adhere to its API contract
Next
From: andres@2ndquadrant.com
Date:
Subject: [PATCH] Fix harmless access to uninitialized memory in ri_triggers.c.