Commit 878daf2e authored by Alvaro Herrera's avatar Alvaro Herrera

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
parent 976fa10d
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment