From: Andres Freund Date: Mon, 19 Aug 2019 19:51:38 +0000 (-0700) Subject: Add fmgr.h include to selfuncs.h. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=4c01a1110388661d8752fee35e9c5614aa4a2d32;p=users%2Frhaas%2Fpostgres.git Add fmgr.h include to selfuncs.h. Necessary after fb3b098f. That previously escaped notice, because all including sites already include fmgr.h some other way. Reported-By: Tom Lane Author: Andres Freund Discussion: https://postgr.es/m/17463.1566153454@sss.pgh.pa.us --- diff --git a/src/include/utils/selfuncs.h b/src/include/utils/selfuncs.h index 9554952a8a..353d38a3ff 100644 --- a/src/include/utils/selfuncs.h +++ b/src/include/utils/selfuncs.h @@ -16,6 +16,7 @@ #define SELFUNCS_H #include "access/htup.h" +#include "fmgr.h" #include "nodes/pathnodes.h"