[EN]
The node displays information about installed extensions in the PostgreSQL database, as well as detailed information about them and allows you to install/uninstall them
select ex.oid,
ex.extname,
u.usename,
ex.extnamespace,
ex.extrelocatable,
ex.extversion,
cast(ex.extconfig as text) "extconfig",
cast(ex.extcondition as text) "extcondition"
from pg_catalog.pg_extension ex,
pg_catalog.pg_user u
where ex.extowner = u.usesysid
Extension Editor
The editor allows you to install/remove default extensions supplied with the contrib package
select e.name,
e.default_version,
e.installed_version,
e.comment
from pg_catalog.pg_available_extensions e
Installing the extension
Select extension with "no added" status
Click the "Install" button
create extension ____;
Removing an extension
Select extension with "added" status
Click the "Remove" button
drop extension ____;
[RU]
Узел отображает информацию об установленных расширениях в базе данных PostgreSQL, а так же подробную информацию о них и позволяет устанавливать/удалять их
select ex.oid,
ex.extname,
u.usename,
ex.extnamespace,
ex.extrelocatable,
ex.extversion,
cast(ex.extconfig as text) "extconfig",
cast(ex.extcondition as text) "extcondition"
from pg_catalog.pg_extension ex,
pg_catalog.pg_user u
where ex.extowner = u.usesysid
Редактор расширений
Редактор позволяет устанавливать/удалять расширения по умолчанию поставляемые с пакетом contrib
select e.name,
e.default_version,
e.installed_version,
e.comment
from pg_catalog.pg_available_extensions e
Установка расширения
Выделить расширение со статусом "no added"
Нажать кнопку "Install"
create extension ____;
Удаление расширения
Выделить расширение со статусом "added"
Нажать кнопку "Remove"
drop extension ____;