In the last two recipes, we showed you how to install external modules in PostgreSQL to augment its capabilities.
In this recipe, we will show you some more capabilities that are offered by the extension infrastructure.
In the last two recipes, we showed you how to install external modules in PostgreSQL to augment its capabilities.
In this recipe, we will show you some more capabilities that are offered by the extension infrastructure.
The following are the steps to manage the extensions:
postgres=# \x on
Expanded display is on.
postgres=# SELECT *
postgres-# FROM pg_available_extensions
postgres-# ORDER BY name;
-[ RECORD 1 ]-----+--------------------------------------------------
name | adminpack
default_version | 2.0
installed_version |
comment | administrative functions for PostgreSQL
-[ RECORD 2 ]-----+----------------------------...