From: Alvaro Herrera Date: Mon, 8 Oct 2012 20:34:33 +0000 (-0300) Subject: Fix thinko in previous commit X-Git-Tag: REL9_3_BETA1~815 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=878daf2e72755feadbfb8d21aad26dafd8658086;p=thirdparty%2Fpostgresql.git Fix thinko in previous commit Since postgres.h includes palloc.h, definitions that affect the latter must be present before the former is included. Per buildfarm results --- diff --git a/src/backend/utils/mmgr/mcxt.c b/src/backend/utils/mmgr/mcxt.c index 7acd9c02a72..2fad06c36fe 100644 --- a/src/backend/utils/mmgr/mcxt.c +++ b/src/backend/utils/mmgr/mcxt.c @@ -19,11 +19,11 @@ *------------------------------------------------------------------------- */ -#include "postgres.h" - -/* see palloc.h */ +/* see palloc.h. Must be before postgres.h */ #define MCXT_INCLUDE_DEFINITIONS +#include "postgres.h" + #include "utils/memutils.h"