]> granicus.if.org Git - postgresql/commit
TYPEALIGN doesn't work on int64 on 32-bit platforms.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 7 Oct 2013 22:59:57 +0000 (01:59 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 7 Oct 2013 22:59:57 +0000 (01:59 +0300)
commit5962519b362d28ef02bc8ec135b9bf9b9a168263
tree4613f765b1710f98ed0ab6efae205027a9368a07
parent81fbbfe3352d3965ee3d8eaafe164b2335c43f72
TYPEALIGN doesn't work on int64 on 32-bit platforms.

The TYPEALIGN macro, and the related ones like MAXALIGN, don't work with
values larger than intptr_t, because TYPEALIGN casts the argument to
intptr_t to do the arithmetic. That's not a problem when dealing with
pointers or lengths or offsets related to pointers, but the XLogInsert
scaling patch added a call to MAXALIGN with an XLogRecPtr argument.

To fix, add wider variants of the macros, called TYPEALIGN64 and MAXALIGN64,
which are just like the existing variants but work with uint64 instead of
intptr_t.

Report and patch by David Rowley, analysis by Andres Freund.
src/backend/access/transam/xlog.c
src/include/c.h