diff options
author | Andres Freund <andres@anarazel.de> | 2019-08-16 10:35:31 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-08-16 10:35:31 -0700 |
commit | fb3b098fe88441f9531a5169008ea17eac01301f (patch) | |
tree | f8187a24a1d6c7962d387f14398fee2f00b46db1 /src/include/utils/rel.h | |
parent | 6a04d345fd8094058f08344af93022566222733a (diff) |
Remove fmgr.h includes from headers that don't really need it.
Most of the fmgr.h includes were obsoleted by 352a24a1f9d6f7d4abb1. A
few others can be obsoleted using the underlying struct type in an
implementation detail.
Author: Andres Freund
Discussion: https://postgr.es/m/20190803193733.g3l3x3o42uv4qj7l@alap3.anarazel.de
Diffstat (limited to 'src/include/utils/rel.h')
-rw-r--r-- | src/include/utils/rel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index 2174bbafd14..c5d36680a2b 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -19,7 +19,6 @@ #include "catalog/pg_class.h" #include "catalog/pg_index.h" #include "catalog/pg_publication.h" -#include "fmgr.h" #include "nodes/bitmapset.h" #include "rewrite/prs2lock.h" #include "storage/block.h" @@ -159,7 +158,7 @@ typedef struct RelationData Oid *rd_opfamily; /* OIDs of op families for each index col */ Oid *rd_opcintype; /* OIDs of opclass declared input data types */ RegProcedure *rd_support; /* OIDs of support procedures */ - FmgrInfo *rd_supportinfo; /* lookup info for support procedures */ + struct FmgrInfo *rd_supportinfo; /* lookup info for support procedures */ int16 *rd_indoption; /* per-column AM-specific flags */ List *rd_indexprs; /* index expression trees, if any */ List *rd_indpred; /* index predicate tree, if any */ |