1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-21 12:05:57 +03:00
postgres/contrib/pg_stat_statements/uninstall_pg_stat_statements.sql
2010-09-20 22:08:53 +02:00

9 lines
267 B
SQL

/* 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();