Skip to content

Commit 58218bf

Browse files
committed
Update bundled extensions list
1 parent b536347 commit 58218bf

2 files changed

Lines changed: 18 additions & 32 deletions

File tree

  • docs/whpg

‎docs/whpg/6x/ref_guide/modules/bundled/index.md‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Bundled modules
33
description: Modules that ship with WarehousePG and don't require a separate package install.
44
navigation:
5-
- auto-explain
65
- btree_gin
76
- citext
87
- dblink
@@ -15,51 +14,52 @@ navigation:
1514
- gp_pitr
1615
- gp_sparse_vector
1716
- gp_subtransaction_overflow
18-
- greenplum_fdw
1917
- hstore
20-
- ip4r
2118
- isn
2219
- ltree
2320
- orafce_ref
2421
- pageinspect
25-
- pg_cron
2622
- pg_trgm
2723
- pgcrypto
2824
- postgres_fdw
2925
- sslinfo
3026
- tablefunc
31-
- timestamp9
3227
- uuid-ossp
3328

3429
---
3530

3631
These modules ship with WarehousePG. Activate them in each database with `CREATE EXTENSION <module_name>`, unless the individual reference page specifies a different activation method.
3732

38-
- [auto_explain](auto-explain.md) - Logs execution plans of slow statements automatically.
33+
- amcheck - Provides functions for verifying the logical consistency of indexes and heap relations.
3934
- [btree_gin](btree_gin.md) - Provides GIN operator classes that implement B-tree equivalent behavior for certain data types.
4035
- [citext](citext.md) - Provides a case-insensitive, multibyte-aware text data type.
4136
- [dblink](dblink.md) - Provides connections to other WarehousePG databases.
4237
- [fuzzystrmatch](fuzzystrmatch.md) - Determines similarities and differences between strings.
4338
- [gp_array_agg](gp_array_agg.md) - Implements a parallel `array_agg()` aggregate function for WarehousePG.
4439
- [gp_check_functions](gp_check_functions.md) - Provides views to check for orphaned and missing relation files and a user-defined function to move orphaned files.
40+
- gp_distribution_policy - Provides access to a table's distribution policy information.
41+
- gp_internal_tools - Provides internal diagnostic functions for WarehousePG support and engineering use.
4542
- [gp_legacy_string_agg](gp_legacy_string_agg.md) - Implements a legacy, single-argument `string_agg()` aggregate function that was present in WarehousePG 5.
4643
- [gp_parallel_retrieve_cursor](gp_parallel_retrieve_cursor.md) - Provides extended cursor functionality to retrieve data, in parallel, directly from WarehousePG segments.
4744
- [gp_percentile_agg](gp_percentile_agg.md) - Improves GPORCA performance for ordered-set aggregate functions.
4845
- [gp_pitr](gp_pitr.md) - Supports implementing point-in-time recovery for WarehousePG 6.
4946
- [gp_sparse_vector](gp_sparse_vector.md) - Implements a data type that uses compressed storage of zeros to make vector computations on floating point numbers faster.
5047
- [gp_subtransaction_overflow](gp_subtransaction_overflow.md) - Provides a view and user-defined function for querying suboverflowed backends.
51-
- [greenplum_fdw](greenplum_fdw.md) - Provides a foreign data wrapper for accessing data stored in one or more external WarehousePG clusters.
5248
- [hstore](hstore.md) - Provides a data type for storing sets of key/value pairs within a single value.
53-
- [ip4r](ip4r.md) - Provides data types for operations on IPv4 and IPv6 IP addresses.
5449
- [isn](isn.md) - Provides support for international product numbering standards (EAN13, UPC, ISBN, ISMN, ISSN).
5550
- [ltree](ltree.md) - Provides data types for representing labels of data stored in a hierarchical tree-like structure.
5651
- [orafce](orafce_ref.md) - Provides Oracle SQL compatibility functions.
5752
- [pageinspect](pageinspect.md) - Provides functions for low-level inspection of database page contents. Available to superusers only.
58-
- [pg_cron](pg_cron.md) - Provides a cron-based job scheduler that runs inside the database.
53+
- pg_buffercache - Provides access to views for obtaining cluster-wide shared buffer metrics.
5954
- [pg_trgm](pg_trgm.md) - Provides functions and operators for determining the similarity of alphanumeric text based on trigram matching.
6055
- [pgcrypto](pgcrypto.md) - Provides cryptographic functions.
56+
- [PL/Perl](../../../admin_guide/analytics/procedural_languages/pl_perl.md) - Enables writing functions and triggers in Perl.
57+
- plperlu - Provides an untrusted version of PL/Perl that allows unrestricted operations, such as file and network access.
58+
- [PL/pgSQL](../../../admin_guide/analytics/procedural_languages/pl_sql.md) - Enables writing functions, triggers, and procedural code in a SQL-like language.
59+
- [PL/Python](../../../admin_guide/analytics/procedural_languages/pl_python.md) - Enables writing functions in Python. Enabled by default as `plpythonu` (Python 2).
60+
- plpython2u - Provides an explicit Python 2 version of the untrusted PL/Python language.
61+
- plpython3u - Provides an explicit Python 3 version of the untrusted PL/Python language.
6162
- [postgres_fdw](postgres_fdw.md) - Provides a foreign data wrapper for accessing data stored in an external PostgreSQL or WarehousePG database.
6263
- [sslinfo](sslinfo.md) - Provides information about the SSL certificate of the current client connection.
6364
- [tablefunc](tablefunc.md) - Provides various functions that return tables (multiple rows).
64-
- [timestamp9](timestamp9.md) - Provides an efficient nanosecond-precision timestamp data type.
6565
- [uuid-ossp](uuid-ossp.md) - Provides functions to generate universally unique identifiers (UUIDs).

‎docs/whpg/7x/ref_guide/modules/bundled/index.md‎

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Bundled Modules
33
description: Modules that ship with WarehousePG and don't require a separate package install.
44
navigation:
5-
- auto-explain
65
- btree_gin
76
- citext
87
- dblink
@@ -22,56 +21,43 @@ navigation:
2221
- postgres_fdw
2322
- sslinfo
2423
- tablefunc
25-
- tsm_system_rows
26-
- tsm_system_time
2724
- uuid-ossp
2825

2926
---
3027

3128
These modules ship with WarehousePG. Activate them in each database with `CREATE EXTENSION <module_name>`, unless the individual reference page specifies a different activation method.
3229

33-
- adminpack - Provides administrative support functions used by management tools such as pgAdmin.
34-
- amcheck - Provides functions for verifying the logical consistency of indexes and heap relations.
35-
- [auto_explain](auto-explain.md) - Logs execution plans of slow statements automatically.
36-
- bloom - Implements a Bloom filter-based index access method for equality comparisons on multiple columns.
3730
- [btree_gin](btree_gin.md) - Provides GIN operator classes that implement B-tree equivalent behavior for certain data types.
38-
- btree_gist - Provides GiST operator classes that implement B-tree equivalent behavior for a range of data types.
3931
- [citext](citext.md) - Provides a case-insensitive, multibyte-aware text data type.
40-
- cube - Provides a data type for representing multidimensional cubes.
4132
- [dblink](dblink.md) - Provides connections to other WarehousePG databases.
42-
- dict_int - Provides a text search dictionary template that controls indexing of integers.
43-
- dict_xsyn - Provides a text search dictionary template for extended synonym processing.
44-
- earthdistance - Provides two approaches to calculating great-circle distances on Earth's surface.
4533
- file_fdw - Provides a foreign-data wrapper for accessing data files in the server's file system.
34+
- [fuzzystrmatch](fuzzystrmatch.md) - Provides functions to determine similarities and differences between strings.
35+
- gp_debug_numsegments - Provides functions for testing and debugging cluster segment count behavior.
36+
- gp_distribution_policy - Provides access to a table's distribution policy information.
4637
- [gp_exttable_fdw](gp_exttable_fdw.md) - Built-in foreign-data wrapper that internally converts an external table to a foreign table.
38+
- gp_inject_fault - Provides fault injection points for testing cluster fault tolerance and recovery.
39+
- gp_internal_tools - Provides internal diagnostic functions for WarehousePG support and engineering use.
4740
- [gp_legacy_string_agg](gp_legacy_string_agg.md) - Implements a legacy, single-argument `string_agg()` aggregate function.
41+
- gp_replica_check - Provides functions for verifying consistency between primary and mirror segments.
4842
- [gp_sparse_vector](gp_sparse_vector.md) - Implements a data type that uses compressed storage of zeros to make vector computations on floating point numbers faster.
43+
- [gp_toolkit](../../gp_toolkit.md) - Provides administrative views and functions for monitoring database status, such as skew, locks, and disk usage.
4944
- [hstore](hstore.md) - Provides a data type for storing sets of key/value pairs within a single value.
5045
- intarray - Provides additional functions, operators, and index support for arrays of integers with no null elements.
5146
- [isn](isn.md) - Provides data types for international product numbering standards (EAN13, UPC, ISBN, ISMN, ISSN).
52-
- lo - Provides support for managing large objects.
5347
- [ltree](ltree.md) - Provides data types for representing labels of data stored in a hierarchical tree-like structure.
5448
- [orafce](orafce_ref.md) - Provides Oracle SQL compatibility functions.
5549
- [pageinspect](pageinspect.md) - Provides functions for low-level inspection of the contents of database pages. Available to superusers only.
5650
- [pg_buffercache](pg_buffercache.md) - Provides access to views for obtaining cluster-wide shared buffer metrics.
57-
- pg_freespacemap - Provides a function for examining the free space map.
5851
- pg_hint_plan - Allows controlling query execution plans using hints specified in SQL comments.
59-
- pg_prewarm - Provides functions for loading relation data into the buffer cache.
6052
- [pg_stat_statements](pg_stat_statements.md) - Tracks execution statistics of all SQL statements. Requires `shared_preload_libraries`.
6153
- [pg_trgm](pg_trgm.md) - Provides functions and operators for determining the similarity of alphanumeric text based on trigram matching.
62-
- pg_visibility - Provides functions for examining the visibility map and page-level visibility information of a relation.
6354
- [pgcrypto](pgcrypto.md) - Provides cryptographic functions.
64-
- pgrowlocks - Provides a function that shows row locking information for a given table.
65-
- pgstattuple - Provides functions for obtaining tuple-level and index-level statistics.
6655
- [PL/Perl](../../../admin_guide/analytics/procedural_languages/pl_perl.md) - Enables writing functions and triggers in Perl.
56+
- plperlu - Provides an untrusted version of PL/Perl that allows unrestricted operations, such as file and network access.
6757
- [PL/pgSQL](../../../admin_guide/analytics/procedural_languages/pl_sql.md) - Enables writing functions, triggers, and procedural code in a SQL-like language.
6858
- [PL/Python](../../../admin_guide/analytics/procedural_languages/pl_python.md) - Enables writing functions in Python.
6959
- [postgres_fdw](postgres_fdw.md) - Provides a foreign data wrapper for accessing data stored in an external Postgres database.
70-
- seg - Provides a data type for representing line segments or floating-point intervals.
7160
- [sslinfo](sslinfo.md) - Provides information about the SSL certificate of the current client connection.
7261
- [tablefunc](tablefunc.md) - Provides various functions that return tables (multiple rows).
73-
- [tsm_system_rows](tsm_system_rows.md) - Implements the `SYSTEM_ROWS` table sampling method.
74-
- [tsm_system_time](tsm_system_time.md) - Implements the `SYSTEM_TIME` table sampling method.
7562
- unaccent - Provides a text search dictionary that removes accents from lexemes.
7663
- [uuid-ossp](uuid-ossp.md) - Provides functions to generate universally unique identifiers (UUIDs).
77-
- xml2 - Provides XPath querying and XSLT functionality.

0 commit comments

Comments
 (0)