Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 878daf2

Browse files
committed
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
1 parent 976fa10 commit 878daf2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/mmgr/mcxt.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
*-------------------------------------------------------------------------
2020
*/
2121

22-
#include "postgres.h"
23-
24-
/* see palloc.h */
22+
/* see palloc.h. Must be before postgres.h */
2523
#define MCXT_INCLUDE_DEFINITIONS
2624

25+
#include "postgres.h"
26+
2727
#include "utils/memutils.h"
2828

2929

0 commit comments

Comments
 (0)