*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.495 2006/07/16 18:17:14 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.496 2006/07/25 01:23:34 tgl Exp $
*
* NOTES
*
*/
set_max_safe_fds();
+ /*
+ * Load configuration files for client authentication.
+ */
+ load_hba();
+ load_ident();
+
/*
* Initialize the list of active backends.
*/
whereToSendOutput = DestNone;
/*
- * Initialize the statistics collector stuff
+ * Initialize stats collection subsystem (this does NOT start the
+ * collector process!)
*/
pgstat_init();
/*
- * Load configuration files for client authentication.
- */
- load_hba();
- load_ident();
-
- /*
- * We're ready to rock and roll...
+ * Initialize the autovacuum subsystem (again, no process start yet)
*/
- StartupPID = StartupDataBase();
+ autovac_init();
/*
* Remember postmaster startup time
PgStartTime = GetCurrentTimestamp();
/*
- * Initialize the autovacuum daemon
+ * We're ready to rock and roll...
*/
- autovac_init();
+ StartupPID = StartupDataBase();
status = ServerLoop();