How to remove Postgres extension

I have included the pg_stat_statements extension for PostgreSQL

create EXTENSION pg_stat_statements;

How can I stop using the pg_stat_statements extension in PostgreSQL 9.x?

Even the original documentation does not contain examples.

+4
source share
1 answer
DROP EXTENSION pg_stat_statements;
+6
source

All Articles