Fix indirect include Commit 0ee83dd4a99 added a call of assign_record_type_typmod() in postgres_fdw.c, but relied on utils/typcache.h being included via nodes/execnodes.h. That was put there as part of the FOR PORTION OF feature, and if that were to change, there would be a possible unrelated compilation failure. To fix, add the required include directly.
Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/f292187f375738ee8e921ab6bd3fa011e2cc2813 Modified Files -------------- contrib/postgres_fdw/postgres_fdw.c | 1 + 1 file changed, 1 insertion(+)
