]> granicus.if.org Git - postgresql/commit
Remove the correct pgstat file on DROP DATABASE
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 5 Mar 2014 16:03:29 +0000 (13:03 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 5 Mar 2014 16:03:29 +0000 (13:03 -0300)
commit2b4f2ab33dea09e47b93a2eb4be05aa4d40b49ee
treece9a9b6134a8b49b49fe16d7420a9f692c4660c5
parent65b96714118d3919195d2dd47e8d2df23718c7ab
Remove the correct pgstat file on DROP DATABASE

We were unlinking the permanent file, not the non-permanent one.  But
since the stat collector already unlinks all permanent files on startup,
there was nothing for it to unlink.  The non-permanent file remained in
place, and was copied to the permanent directory on shutdown, so in
effect no file was ever dropped.

Backpatch to 9.3, where the issue was introduced by commit 187492b6c2e8.
Before that, there were no per-database files and thus no file to drop
on DROP DATABASE.

Per report from Thom Brown.

Author: Tomáš Vondra
src/backend/postmaster/pgstat.c