Managing extensions in Yandex MPP Analytics for PostgreSQL
Yandex MPP Analytics for PostgreSQL supports the following Greenplum® and PostgreSQL extensions:
|
Extension |
Version |
|
btree_gin |
1.0 |
|
citext |
1.0 |
|
dblink |
1.1 |
|
dict_int |
1.0 |
|
dict_xsyn |
1.0 |
|
diskquota |
1.0 |
|
fuzzystrmatch |
1.0 |
|
gp_array_agg |
1.0.0 |
|
gp_internal_tools |
1.0.0 |
|
gp_percentile_agg |
1.0.0 |
|
gp_relaccess_stats Collects the access statistics for tables and views. For more information, see Using gp_relaccess_stats. |
1.1 |
|
gp_relsizes_stats Collects file and table size statistics. For more information, see Using gp_relsizes_stats. |
1.0 |
|
gp_sparse_vector |
1.0.1 |
|
gp_url_tools Contains functions for working with URLs. For more information, see Using |
1.0 |
|
hstore |
1.3 |
|
intarray |
1.0 |
|
isn |
1.0 |
|
ltree |
1.0 |
|
orafce |
3.7 |
|
pgaudit Adds the ability to maintain audit logs of sessions and objects using the standard PostgreSQL logging system. |
1.0.9 |
|
pgcrypto |
1.1 |
|
pg_trgm |
1.1 |
|
plperl |
1.0 |
|
plpgsql |
1.0 |
|
postgis |
2.1.5 |
|
postgres_fdw |
1.0 |
|
pxf |
2.0 |
|
sslinfo |
1.0 |
|
tablefunc |
1.0 |
|
try_convert Adds a function to convert data from one type to another. For more information, see Using try_convert. |
1.0 |
|
tsearch2 |
1.0 |
|
unaccent |
1.0 |
|
uuid-cb. Yandex Cloud extension. Enables the generation and validation of unique IDs in compliance with the Russian Central Bank requirements. For more information, see Using |
1.0 |
|
Yezzey. Yandex Cloud extension. Enables moving AO and AOCO tables from cluster storage to cold storage and vice versa. To use this extension, enable hybrid storage in your Yandex MPP Analytics for PostgreSQL cluster. |
1.8 |
|
xml2 |
1.0 |
Retrieving a list of extensions available for installation
Connect to the selected database and run this command:
SELECT * FROM pg_available_extensions();
This will display a list of DB extensions available for installation:
name | default_version | comment
------------------------+-----------------+------------------------------
diskquota | 1.0 | Disk Quota Main Program
...
Retrieving a list of installed extensions
Connect to the selected database and run this command:
SELECT extname FROM pg_extension;
This will display a list of extensions installed in the DB:
extname
-------------------
plpgsql
...
Editing a list of installed extensions
Connect to the selected database and run this command:
CREATE EXTENSION <extension_name>;
For more information, see this Greenplum® article
Greenplum® and Greenplum Database® are registered trademarks or trademarks of Broadcom Inc. in the United States and/or other countries.