postgresql/contrib/pg_stat_statements/uninstall_pg_stat_statement...

9 lines
267 B
MySQL
Raw Normal View History

2010-09-20 22:08:53 +02:00
/* contrib/pg_stat_statements/uninstall_pg_stat_statements.sql */
-- 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();