From: Heikki Linnakangas Date: Mon, 20 Apr 2015 10:48:37 +0000 (+0300) Subject: Remove dead fields from struct. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9932d4580d657f91c81ace4c2cece8e16a026d5c;p=users%2Fheikki%2Fpostgres.git Remove dead fields from struct. --- diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index d33dbccfba..c61bc41805 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -53,7 +53,6 @@ typedef LockInfoData *LockInfo; */ typedef struct RelationAmInfo { - /* pg_am only */ FmgrInfo aminsert; FmgrInfo ambeginscan; FmgrInfo amgettuple; @@ -63,9 +62,6 @@ typedef struct RelationAmInfo FmgrInfo ammarkpos; FmgrInfo amrestrpos; FmgrInfo amcanreturn; - FmgrInfo amcostestimate; - - FmgrInfo amoptions; } RelationAmInfo; @@ -78,8 +74,6 @@ typedef struct RelationSeqAmInfo /* pg_seqam only */ FmgrInfo seqamalloc; FmgrInfo seqamsetval; - - FmgrInfo amoptions; } RelationSeqAmInfo;