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
This commit is contained in:
Alvaro Herrera 2012-10-08 17:34:33 -03:00
parent 976fa10d20
commit 878daf2e72
1 changed files with 3 additions and 3 deletions

View File

@ -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"