summaryrefslogtreecommitdiff
path: root/src/include/libpq
diff options
context:
space:
mode:
authorTom Lane2005-07-29 19:30:09 +0000
committerTom Lane2005-07-29 19:30:09 +0000
commit5d5f1a79e674d5501f70f08bbb9b83d9bbaed319 (patch)
tree8e07dc9808e8a23029615c9fa6a8a110f9c68567 /src/include/libpq
parent507b758ad99c0e3a973097299b6b36688e7fec8e (diff)
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.
Diffstat (limited to 'src/include/libpq')
-rw-r--r--src/include/libpq/hba.h6
1 files changed, 3 insertions, 3 deletions
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 */