summaryrefslogtreecommitdiff
path: root/src/include/postmaster/autovacuum.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-09-24 03:12:23 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-09-24 03:12:23 +0000
commit48f7e6439568e5d665f622e2973becc50a86b64a (patch)
tree61e36a6230783a6e8374e72b247fb3597f4d5a3f /src/include/postmaster/autovacuum.h
parent02138357ffc8c41a3d646035368712a5394f1f5f (diff)
downloadpostgresql-48f7e6439568e5d665f622e2973becc50a86b64a.tar.gz
Simplify and rename some GUC variables, per various recent discussions:
* stats_start_collector goes away; we always start the collector process, unless prevented by a problem with setting up the stats UDP socket. * stats_reset_on_server_start goes away; it seems useless in view of the availability of pg_stat_reset(). * stats_block_level and stats_row_level are merged into a single variable "track_counts", which controls all reports sent to the collector process. * stats_command_string is renamed to track_activities. * log_autovacuum is renamed to log_autovacuum_min_duration to better reflect its meaning. The log_autovacuum change is not a compatibility issue since it didn't exist before 8.3 anyway. The other changes need to be release-noted.
Diffstat (limited to 'src/include/postmaster/autovacuum.h')
-rw-r--r--src/include/postmaster/autovacuum.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/postmaster/autovacuum.h b/src/include/postmaster/autovacuum.h
index 27a982aafc..d3e9ebe6c8 100644
--- a/src/include/postmaster/autovacuum.h
+++ b/src/include/postmaster/autovacuum.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/postmaster/autovacuum.h,v 1.11 2007/06/25 16:09:03 alvherre Exp $
+ * $PostgreSQL: pgsql/src/include/postmaster/autovacuum.h,v 1.12 2007/09/24 03:12:23 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -31,7 +31,7 @@ extern int autovacuum_vac_cost_limit;
/* autovacuum launcher PID, only valid when worker is shutting down */
extern int AutovacuumLauncherPid;
-extern int Log_autovacuum;
+extern int Log_autovacuum_min_duration;
/* Status inquiry functions */
extern bool AutoVacuumingActive(void);