]> granicus.if.org Git - postgresql/blobdiff - src/backend/commands/dbcommands.c
Call pgstat_drop_database during DROP DATABASE, so that any stats file
[postgresql] / src / backend / commands / dbcommands.c
index be16791342e9b84a746d7351fe1fb464b3fa240b..63e15e505b7f452eec9d1fb56cfbd6fc65391827 100644 (file)
@@ -13,7 +13,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.191 2007/02/01 19:10:26 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.192 2007/02/09 16:12:18 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -37,6 +37,7 @@
 #include "commands/tablespace.h"
 #include "mb/pg_wchar.h"
 #include "miscadmin.h"
+#include "pgstat.h"
 #include "postmaster/bgwriter.h"
 #include "storage/freespace.h"
 #include "storage/procarray.h"
@@ -644,6 +645,11 @@ dropdb(const char *dbname, bool missing_ok)
         */
        FreeSpaceMapForgetDatabase(db_id);
 
+       /*
+        * Tell the stats collector to forget it immediately, too.
+        */
+       pgstat_drop_database(db_id);
+
        /*
         * Tell bgwriter to forget any pending fsync requests for files in the
         * database; else it'll fail at next checkpoint.