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.
DROP EXTENSION pg_stat_statements;