~ubuntu-branches/ubuntu/vivid/postgresql-9.4/vivid-proposed

« back to all changes in this revision

Viewing changes to src/include/commands/vacuum.h

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2014-11-18 09:49:04 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20141118094904-f7f1jhitn5iadkgn
Tags: 9.4~rc1-1
* First 9.4 RC release.
* Update psql call in dump-reload instructions.
* Reenable 010_pg_basebackup.t tests, fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
                                        BlockNumber num_all_visible_pages,
157
157
                                        bool hasindex,
158
158
                                        TransactionId frozenxid,
159
 
                                        MultiXactId minmulti);
 
159
                                        MultiXactId minmulti,
 
160
                                        bool in_outer_xact);
160
161
extern void vacuum_set_xid_limits(Relation rel,
161
162
                                          int freeze_min_age, int freeze_table_age,
162
163
                                          int multixact_freeze_min_age,
175
176
 
176
177
/* in commands/analyze.c */
177
178
extern void analyze_rel(Oid relid, VacuumStmt *vacstmt,
178
 
                        BufferAccessStrategy bstrategy);
 
179
                        bool in_outer_xact, BufferAccessStrategy bstrategy);
179
180
extern bool std_typanalyze(VacAttrStats *stats);
180
181
extern double anl_random_fract(void);
181
182
extern double anl_init_selection_state(int n);