-
-
Save Randommood/1478360 to your computer and use it in GitHub Desktop.
List installed then available postgresql extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgres=# \dx | |
List of installed extensions | |
Name | Version | Schema | Description | |
---------+---------+------------+------------------------------ | |
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language | |
(1 row) | |
postgres=# \dx+ | |
Objects in extension "plpgsql" | |
Object Description | |
------------------------------------------- | |
function plpgsql_call_handler() | |
function plpgsql_inline_handler(internal) | |
function plpgsql_validator(oid) | |
language plpgsql | |
(4 rows) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment