From 4aba9a348be76fa75a5861b0e1b027a26a76826d Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Sat, 27 Feb 2021 09:50:23 +0100 Subject: [PATCH] Adjust test_utils.h includes to postgres changes PG14 changes xact.h to no longer include fmgr.h which is needed for PG_FUNCTION_ARGS definition. This patch includes fmgr.h explicitly to no longer rely on the indirect include. https://github.com/postgres/postgres/commit/3941eb6341 --- test/src/test_utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/src/test_utils.h b/test/src/test_utils.h index 426540c64..bab7ca957 100644 --- a/test/src/test_utils.h +++ b/test/src/test_utils.h @@ -8,6 +8,7 @@ #include #include +#include #include "export.h"