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
This commit is contained in:
Sven Klemm 2021-02-27 09:50:23 +01:00 committed by Sven Klemm
parent f23233055d
commit 4aba9a348b

View File

@ -8,6 +8,7 @@
#include <postgres.h>
#include <access/xact.h>
#include <fmgr.h>
#include "export.h"