]> granicus.if.org Git - postgresql/commit
Simplify use of AllocSetContextCreate() wrapper macro.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 12 Oct 2018 18:26:56 +0000 (14:26 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 12 Oct 2018 18:26:56 +0000 (14:26 -0400)
commit13cd7209f794d9dff8084c9748a78a0a5bf0464a
tree871d10a0b651411fd0a4d32bc3a1902264519577
parent24a2c436a5ce1912373a6c9561cbabd09495552d
Simplify use of AllocSetContextCreate() wrapper macro.

We can allow this macro to accept either abbreviated or non-abbreviated
allocation parameters by making use of __VA_ARGS__.  As noted by Andres
Freund, it's unlikely that any compiler would have __builtin_constant_p
but not __VA_ARGS__, so this gives up little or no error checking, and
it avoids a minor but annoying API break for extensions.

With this change, there is no reason for anybody to call
AllocSetContextCreateExtended directly, so in HEAD I renamed it to
AllocSetContextCreateInternal.  It's probably too late for an ABI
break like that in 11, though.

Discussion: https://postgr.es/m/20181012170355.bhxi273skjt6sag4@alap3.anarazel.de
src/backend/access/transam/xact.c
src/backend/utils/mmgr/aset.c
src/backend/utils/mmgr/mcxt.c
src/include/utils/memutils.h