blob: d2832a2986a1c660b1d6e6f1973bda138ed5d26e (
plain)
1
2
3
4
5
6
7
8
|
/* 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();
|