]> granicus.if.org Git - postgresql/commit
Avoid useless palloc during transaction commit
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Dec 2013 15:37:30 +0000 (12:37 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Dec 2013 15:37:30 +0000 (12:37 -0300)
commit6130208e75c98d76b526ac2ac08cedbd17b9f00d
tree2d4d53b490acf9339b38f14c06c1f1d6d0aa852b
parentc32afe53c2e87a56e2ff930798a5588db0f7a516
Avoid useless palloc during transaction commit

We can allocate the initial relations-to-drop array when first needed,
instead of at function entry; this avoids allocating it when the
function is not going to do anything, which is most of the time.

Backpatch to 9.3, where this behavior was introduced by commit
279628a0a7cf5.

There's more that could be done here, such as possible reworking of the
code to avoid having to palloc anything, but that doesn't sound as
backpatchable as this relatively minor change.

Per complaint from Noah Misch in
20131031145234.GA621493@tornado.leadboat.com
src/backend/catalog/storage.c