diff options
Diffstat (limited to 'src/include/pgstat.h')
| -rw-r--r-- | src/include/pgstat.h | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 34577fa55b8..8f1c6965569 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -321,7 +321,6 @@ typedef struct PgStat_MsgVacuum  	PgStat_MsgHdr m_hdr;  	Oid			m_databaseid;  	Oid			m_tableoid; -	bool		m_adopt_counts;  	bool		m_autovacuum;  	TimestampTz m_vacuumtime;  	PgStat_Counter m_tuples; @@ -338,7 +337,6 @@ typedef struct PgStat_MsgAnalyze  	PgStat_MsgHdr m_hdr;  	Oid			m_databaseid;  	Oid			m_tableoid; -	bool		m_adopt_counts;  	bool		m_autovacuum;  	TimestampTz m_analyzetime;  	PgStat_Counter m_live_tuples; @@ -678,9 +676,9 @@ extern void pgstat_reset_shared_counters(const char *);  extern void pgstat_reset_single_counter(Oid objectid, PgStat_Single_Reset_Type type);  extern void pgstat_report_autovac(Oid dboid); -extern void pgstat_report_vacuum(Oid tableoid, bool shared, bool adopt_counts, +extern void pgstat_report_vacuum(Oid tableoid, bool shared,  					 PgStat_Counter tuples); -extern void pgstat_report_analyze(Relation rel, bool adopt_counts, +extern void pgstat_report_analyze(Relation rel,  					  PgStat_Counter livetuples, PgStat_Counter deadtuples);  extern void pgstat_initialize(void); | 
