diff options
| author | Tom Lane | 2005-08-11 21:11:50 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-08-11 21:11:50 +0000 |
| commit | d90c531188196cd4ea6683c7f4395151b42028a2 (patch) | |
| tree | aef955843c8a9648f7841d0e934ed152976129fa /src/include/libpq | |
| parent | f6c30d54fa26047cc2e7315debb85a0a20a07c90 (diff) | |
Autovacuum loose end mop-up. Provide autovacuum-specific vacuum cost
delay and limit, both as global GUCs and as table-specific entries in
pg_autovacuum. stats_reset_on_server_start is now OFF by default,
but a reset is forced if we did WAL replay. XID-wrap vacuums do not
ANALYZE, but do FREEZE if it's a template database. Alvaro Herrera
Diffstat (limited to 'src/include/libpq')
| -rw-r--r-- | src/include/libpq/hba.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index 568aaf13c3d..38094981143 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -4,7 +4,7 @@ * Interface to hba.c * * - * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.39 2005/07/29 19:30:08 tgl Exp $ + * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.40 2005/08/11 21:11:48 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -37,6 +37,7 @@ extern void load_role(void); extern int hba_getauthmethod(hbaPort *port); extern int authident(hbaPort *port); extern bool read_pg_database_line(FILE *fp, char *dbname, Oid *dboid, - Oid *dbtablespace, TransactionId *dbfrozenxid); + Oid *dbtablespace, TransactionId *dbfrozenxid, + TransactionId *dbvacuumxid); #endif /* HBA_H */ |
