Re: A couple logical decoding fixes/patches

From: Noah Misch <noah(at)leadboat(dot)com>
To: Andres Freund <andres(at)2ndquadrant(dot)com>
Cc: Robert Haas <robertmhaas(at)gmail(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: A couple logical decoding fixes/patches
Date: 2014-05-13 03:11:02
Message-ID: 20140513031102.GA1553726@tornado.leadboat.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sat, May 10, 2014 at 04:56:51PM +0200, Andres Freund wrote:
> On 2014-05-10 00:59:59 -0400, Noah Misch wrote:
> > Static functions having only one call site are especially vulnerable to
> > inlining, so avoid naming them in the suppressions file. I do see
> > ReorderBufferSerializeChange() inlined away at -O2 and higher. Is it fair to
> > tie the suppression to ReorderBufferSerializeTXN() instead?
>
> Hm. That's a good point. If you're talking about tying it to
> ReorderBufferSerializeTXN() you mean to list it below the write, as part
> of the callstack?
>
> {
> padding_reorderbuffer_serialize
> Memcheck:Param
> write(buf)
>
> ...
> fun:ReorderBufferSerializeTXN
> }
>
> If so, yes, that should be fine. Since there's no other writes it
> shouldn't make a difference.

Yep. Committed that way.

> > Do you happen to have a self-contained procedure for causing the server to
> > reach the code in question?
>
> (cd contrib/test_decoding && make -s installcheck-force)
> against a server running with
> valgrind \
> --quiet --trace-children=yes --leak-check=no --track-origins=yes \
> --read-var-info=yes run-pg-dev-master -c logging_collector=on \
> --suppressions=/home/andres/src/postgresql/src/tools/valgrind.supp
> <path/to/postgres> \
> -c wal_level=logical -c max_replication_slots=3
>
> Does the trick here. Valgrind warns in the first (ddl) test run.

Thanks.

--
Noah Misch
EnterpriseDB http://www.enterprisedb.com

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Rajeev rastogi 2014-05-13 05:08:19 Re: Proposal for CSN based snapshots
Previous Message Bruce Momjian 2014-05-13 01:24:27 Re: 9.4 release notes