~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to src/include/pgstat.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-06-14 09:53:29 UTC
  • mto: (6.1.1 sid) (10.1.1 oneiric-proposed) (1.2.1)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20110614095329-71gfhjywyp2c27au
Tags: upstream-9.1~beta2
ImportĀ upstreamĀ versionĀ 9.1~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
        PgStat_MsgHdr m_hdr;
323
323
        Oid                     m_databaseid;
324
324
        Oid                     m_tableoid;
325
 
        bool            m_adopt_counts;
326
325
        bool            m_autovacuum;
327
326
        TimestampTz m_vacuumtime;
328
327
        PgStat_Counter m_tuples;
339
338
        PgStat_MsgHdr m_hdr;
340
339
        Oid                     m_databaseid;
341
340
        Oid                     m_tableoid;
342
 
        bool            m_adopt_counts;
343
341
        bool            m_autovacuum;
344
342
        TimestampTz m_analyzetime;
345
343
        PgStat_Counter m_live_tuples;
706
704
extern void pgstat_reset_single_counter(Oid objectid, PgStat_Single_Reset_Type type);
707
705
 
708
706
extern void pgstat_report_autovac(Oid dboid);
709
 
extern void pgstat_report_vacuum(Oid tableoid, bool shared, bool adopt_counts,
 
707
extern void pgstat_report_vacuum(Oid tableoid, bool shared,
710
708
                                         PgStat_Counter tuples);
711
 
extern void pgstat_report_analyze(Relation rel, bool adopt_counts,
 
709
extern void pgstat_report_analyze(Relation rel,
712
710
                                          PgStat_Counter livetuples, PgStat_Counter deadtuples);
713
711
 
714
712
extern void pgstat_report_recovery_conflict(int reason);