From 5d5f1a79e674d5501f70f08bbb9b83d9bbaed319 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 29 Jul 2005 19:30:09 +0000 Subject: Clean up a number of autovacuum loose ends. Make the stats collector track shared relations in a separate hashtable, so that operations done from different databases are counted correctly. Add proper support for anti-XID-wraparound vacuuming, even in databases that are never connected to and so have no stats entries. Miscellaneous other bug fixes. Alvaro Herrera, some additional fixes by Tom Lane. --- src/include/libpq/hba.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/libpq') diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index d170f303a43..568aaf13c3d 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.38 2005/06/28 05:09:13 tgl Exp $ + * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.39 2005/07/29 19:30:08 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,7 +36,7 @@ extern void load_ident(void); 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); +extern bool read_pg_database_line(FILE *fp, char *dbname, Oid *dboid, + Oid *dbtablespace, TransactionId *dbfrozenxid); #endif /* HBA_H */ -- cgit v1.2.3