mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
9 lines
267 B
SQL
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();
|