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
pull/3/head
Alvaro Herrera 13 years ago
parent 976fa10d20
commit 878daf2e72
  1. 6
      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"

Loading…
Cancel
Save