Use varargs macro for CACHEDEBUG

Started by Peter Eisentrautover 7 years ago2 messageshackers
Beta feature

Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.

won't retrybuild failedCI history

Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:

git clone --branch t40137_1 https://github.com/hackorum-dev/postgres.git

In a checkout you already have, add the fork once:

git remote add hackorum https://github.com/hackorum-dev/postgres.git

then, for this patchset and every later one:

git fetch hackorum t40137_1 && git checkout t40137_1

Patchset v1 (message #1) is on t40137_1

Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

I propose the attached patch to replace the CACHEX_elog() macros with a
single varargs version.

--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

Attachments:

t40137_1
0001-Use-varargs-macro-for-CACHEDEBUG.patchtext/plain; charset=UTF-8; name=0001-Use-varargs-macro-for-CACHEDEBUG.patch; x-mac-creator=0; x-mac-type=0Download+31-46
#2Andres Freund
andres@anarazel.de
In reply to: Peter Eisentraut (#1)
Re: Use varargs macro for CACHEDEBUG

Hi,

On 2019-02-18 13:56:52 +0100, Peter Eisentraut wrote:

I propose the attached patch to replace the CACHEX_elog() macros with a
single varargs version.

+1

Greetings,

Andres Freund