| address_standardizer | Used for structuring postal addresses transmitted as a string |
|---|
| address_standardizer_data_us | Used to structure US and Canadian postal addresses for the address_standardizer extension |
|---|
| autoinc | Contains the autoinc() function. This function returns the next value for a sequence stored in an integer field. Unlike built-in sequence management types, autoinc(): - blocks attempts to insert a value from a query into the field;
- allows changing the value in the field when updating a record
|
|---|
| bloom | Adds access to database indexes based on Bloom filters, which require significantly less memory than hash tables but allow for false positives |
|---|
| btree_gin | Contains examples of the GIN (Generalized Inverted Index) operator class, used for reverse searching |
|---|
| btree_gist | Contains GiST (Generalized Search Tree) operator classes. Unlike B-tree indexes, GiST supports the <> (not equal) and <-> (distance) operators, although it does not guarantee uniqueness of returned values |
|---|
| citext | Contains the citext data type, which is used for case-insensitive string operations |
|---|
| clickhouse_fdw | Allows connecting directly from a PostgreSQL cluster to ClickHouse databases using a Foreign Data Wrapper. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users. The extension is available for PostgreSQL versions 15 and higher |
|---|
| cube | Contains the cube data type, which is used to represent multidimensional cubes |
|---|
| dblink | Supports connecting from the current session to other PostgreSQL databases |
|---|
| dict_int | Contains an example of an additional dictionary template for full-text search, which can help prevent the list of unique words from growing and increase search speed |
|---|
| dict_xsyn | Contains an example of an Extended Synonym Dictionary template for full-text search: when searching for a word, all its synonyms will be found |
|---|
| fuzzystrmatch | Contains functions used for determining string similarity and difference |
|---|
| h3-pg | Provides an API to H3, an open system for indexing geographic objects in a grid of hexagonal zones (tiles). It allows dividing territory into identical tiles for geospatial analysis, such as building heatmaps or analyzing traffic and mobility. Can be used together with PostGIS for advanced geospatial analysis. The extension is available for PostgreSQL versions 15 and higher |
|---|
| hstore | Contains the hstore type, which allows storing key/value pairs in a single table field and working with them efficiently |
|---|
| intarray | Contains functions and operators for working with integer arrays that do not contain empty (NULL) values |
|---|
| ip4r | Supports indexing of IPv4 and IPv6 addresses to improve query performance |
|---|
| isn | Contains data types for international product numbering standards EAN13, UPC, ISBN, ISMN, and ISSN. Number validation and formatting are performed according to a specified list of prefixes |
|---|
| jsonb_plperl | Adds support for json and jsonb data types to the PL/Perl procedural language. Allows direct use of JSON data when writing functions and triggers in Perl |
|---|
| jsquery | Allows using the JsQuery language for working with jsonb data. JsQuery allows organizing efficient searches in nested objects and contains additional comparison operators with index support |
|---|
| lo | Contains the lo data type and the lo_manage() function, which are used to manage Binary Large Objects (BLOBs) in accordance with the requirements of JDBC and ODBC driver specifications (standard PostgreSQL behavior does not correspond to them) |
|---|
| ltree | Contains the ltree data type for representing data labels stored in a tree-like hierarchical structure |
|---|
| moddatetime | Contains the moddatetime() function, which allows tracking the last modification time of a table row |
|---|
| mysql_fdw | Allows connecting directly from a PostgreSQL cluster to MySQL databases using a Foreign Data Wrapper. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users. The extension is available for PostgreSQL versions 15 and higher |
|---|
| oracle_fdw | Allows connecting directly from a PostgreSQL cluster to Oracle databases using a Foreign Data Wrapper. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pg_buffercache | Allows monitoring the state of the shared buffer cache in real time. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pg_cron | Allows for the scheduling of SQL queries within a database. Requires connecting a shared library pg_cron. The extension can be connected to only one database in a cluster. To connect the extension to another database, first delete it from the current one. Connecting this extension will cause the cluster to restart. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pg_prewarm | Allows loading relation data into the operating system cache or the PostgreSQL buffer cache. Requires connecting a shared library pg_prewarm. Connecting this extension will cause the cluster to restart. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pg_repack | Allows rebuilding tables and indexes without blocking, in order to reduce their size and fragmentation. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users |
|---|
| pg_stat_statements | Adds capabilities for tracking planning and collecting execution statistics for all SQL queries run in the cluster. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users |
|---|
| pg_trgm | Contains tools for quickly finding similar strings based on trigram matching. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pg_uuidv7 | Contains functions for generating UUID version 7. The extension is available for PostgreSQL versions 15 and higher |
|---|
| pgcrypto | Provides a set of cryptographic functions for data protection. Learn more about data encryption using the pgcrypto extension and usage examples in the Data Encryption guide |
|---|
| pgrowlocks | Contains the pgrowlocks() function, which returns information about row locks in the specified table |
|---|
| pgstattuple | Provides detailed statistics on disk space usage and allows analyzing index fragmentation, the number of dead tuples, and free space. The extension is useful for performance diagnostics, index optimization, planning VACUUM operations, and using the pg_repack extension |
|---|
| pgTAP | Provides a set of tools for testing database schemas and SQL functions |
|---|
| plpgsql | Allows using the PL/pgSQL procedural language for creating functions, procedures, and triggers. This extension is enabled by default and is automatically available in all databases created in the cluster. It does not need to be connected separately via the dashboard |
|---|
| plv8 | Allows using JavaScript for writing stored procedures and triggers |
|---|
| postgis | Allows storing and processing geographic information system (GIS) objects in PostgreSQL databases. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users |
|---|
| postgis_raster | Allows working with raster images and conducting analysis for geographic information systems (GIS) in databases |
|---|
| postgres_fdw | Allows connecting directly from a PostgreSQL cluster to data stored on external servers (other PostgreSQL clusters) using a Foreign Data Wrapper. Using this extension requires the dbaas_admin role. This role is automatically granted to the database owner and cannot be assigned to other users |
|---|
| prefix | Allows using prefixes and masks to optimize queries |
|---|
| rum | Adds an access method for working with RUM indexes |
|---|
| seg | Contains the seg data type for representing line segments or floating-point intervals |
|---|
| tablefunc | Contains a set of functions that return tables (row sets) |
|---|
| tcn | Provides a trigger function for creating notifications about changes in tables to which the trigger is attached. The extension is available for PostgreSQL versions 15 and higher |
|---|
| tsm_system_rows | Provides a sampling method by row count (SYSTEM_ROWS), which can be used in the TABLESAMPLE clause of a SELECT command. The extension is available for PostgreSQL versions 15 and higher |
|---|
| tsm_system_time | Provides a sampling method by execution time (SYSTEM_TIME), which can be used in the TABLESAMPLE clause of a SELECT command. The extension is available for PostgreSQL versions 15 and higher |
|---|
| unaccent | Contains a dictionary for searching text without regard to diacritical marks |
|---|
| uuid-ossp | Contains functions for generating UUIDs according to standard algorithms |
|---|
| vector | Allows working with vector data—storing, indexing, and executing queries |
|---|
| xml2 | Allows using XPath queries and the XSLT language |
|---|