@@ -3245,14 +3245,13 @@ pgstat_get_tab_entry(PgStat_StatDBEntry *dbentry, Oid tableoid, bool create)
32453245result -> changes_since_analyze = 0 ;
32463246result -> blocks_fetched = 0 ;
32473247result -> blocks_hit = 0 ;
3248-
32493248result -> vacuum_timestamp = 0 ;
3250- result -> autovac_vacuum_timestamp = 0 ;
3251- result -> analyze_timestamp = 0 ;
3252- result -> autovac_analyze_timestamp = 0 ;
32533249result -> vacuum_count = 0 ;
3250+ result -> autovac_vacuum_timestamp = 0 ;
32543251result -> autovac_vacuum_count = 0 ;
3252+ result -> analyze_timestamp = 0 ;
32553253result -> analyze_count = 0 ;
3254+ result -> autovac_analyze_timestamp = 0 ;
32563255result -> autovac_analyze_count = 0 ;
32573256}
32583257
@@ -3928,9 +3927,13 @@ pgstat_recv_tabstat(PgStat_MsgTabstat *msg, int len)
39283927tabentry -> blocks_hit = tabmsg -> t_counts .t_blocks_hit ;
39293928
39303929tabentry -> vacuum_timestamp = 0 ;
3930+ tabentry -> vacuum_count = 0 ;
39313931tabentry -> autovac_vacuum_timestamp = 0 ;
3932+ tabentry -> autovac_vacuum_count = 0 ;
39323933tabentry -> analyze_timestamp = 0 ;
3934+ tabentry -> analyze_count = 0 ;
39333935tabentry -> autovac_analyze_timestamp = 0 ;
3936+ tabentry -> autovac_analyze_count = 0 ;
39343937}
39353938else
39363939{
@@ -4149,9 +4152,11 @@ pgstat_recv_resetsinglecounter(PgStat_MsgResetsinglecounter *msg, int len)
41494152
41504153/* Remove object if it exists, ignore it if not */
41514154if (msg -> m_resettype == RESET_TABLE )
4152- (void )hash_search (dbentry -> tables , (void * )& (msg -> m_objectid ),HASH_REMOVE ,NULL );
4155+ (void )hash_search (dbentry -> tables , (void * )& (msg -> m_objectid ),
4156+ HASH_REMOVE ,NULL );
41534157else if (msg -> m_resettype == RESET_FUNCTION )
4154- (void )hash_search (dbentry -> functions , (void * )& (msg -> m_objectid ),HASH_REMOVE ,NULL );
4158+ (void )hash_search (dbentry -> functions , (void * )& (msg -> m_objectid ),
4159+ HASH_REMOVE ,NULL );
41554160}
41564161
41574162/* ----------