1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Add contrib/pg_stat_statements for server-wide tracking of statement execution

statistics.

Takahiro Itagaki
This commit is contained in:
Tom Lane
2009-01-04 22:19:59 +00:00
parent 1efd5ff89b
commit 7466eeac61
11 changed files with 1239 additions and 7 deletions

View File

@ -0,0 +1,8 @@
/* $PostgreSQL: pgsql/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql,v 1.1 2009/01/04 22:19:59 tgl Exp $ */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
DROP VIEW pg_stat_statements;
DROP FUNCTION pg_stat_statements();
DROP FUNCTION pg_stat_statements_reset();