Using psql how do I list extensions installed in a database?
In psql that would be \dx See the manual of psql for details. Doing it in plain SQL it would be a select on pg_extension: SELECT * FROM pg_extension;
In psql that would be \dx See the manual of psql for details. Doing it in plain SQL it would be a select on pg_extension: SELECT * FROM pg_extension;