diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-10-08 17:34:33 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-10-08 18:33:08 -0300 |
commit | 878daf2e72755feadbfb8d21aad26dafd8658086 (patch) | |
tree | 10ca7a582401e5b31739bed9b9acef9fc3ce9b24 /src | |
parent | 976fa10d20ec9882229020fa16f4d74263066a40 (diff) | |
download | postgresql-878daf2e72755feadbfb8d21aad26dafd8658086.tar.gz postgresql-878daf2e72755feadbfb8d21aad26dafd8658086.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/mmgr/mcxt.c | 6 |
1 files changed, 3 insertions, 3 deletions
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" |