You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/whpg/6x/ref_guide/modules/bundled/index.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
title: Bundled modules
3
3
description: Modules that ship with WarehousePG and don't require a separate package install.
4
4
navigation:
5
-
- auto-explain
6
5
- btree_gin
7
6
- citext
8
7
- dblink
@@ -15,51 +14,52 @@ navigation:
15
14
- gp_pitr
16
15
- gp_sparse_vector
17
16
- gp_subtransaction_overflow
18
-
- greenplum_fdw
19
17
- hstore
20
-
- ip4r
21
18
- isn
22
19
- ltree
23
20
- orafce_ref
24
21
- pageinspect
25
-
- pg_cron
26
22
- pg_trgm
27
23
- pgcrypto
28
24
- postgres_fdw
29
25
- sslinfo
30
26
- tablefunc
31
-
- timestamp9
32
27
- uuid-ossp
33
28
34
29
---
35
30
36
31
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.
37
32
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.
39
34
-[btree_gin](btree_gin.md) - Provides GIN operator classes that implement B-tree equivalent behavior for certain data types.
40
35
-[citext](citext.md) - Provides a case-insensitive, multibyte-aware text data type.
41
36
-[dblink](dblink.md) - Provides connections to other WarehousePG databases.
42
37
-[fuzzystrmatch](fuzzystrmatch.md) - Determines similarities and differences between strings.
43
38
-[gp_array_agg](gp_array_agg.md) - Implements a parallel `array_agg()` aggregate function for WarehousePG.
44
39
-[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.
45
42
-[gp_legacy_string_agg](gp_legacy_string_agg.md) - Implements a legacy, single-argument `string_agg()` aggregate function that was present in WarehousePG 5.
46
43
-[gp_parallel_retrieve_cursor](gp_parallel_retrieve_cursor.md) - Provides extended cursor functionality to retrieve data, in parallel, directly from WarehousePG segments.
47
44
-[gp_percentile_agg](gp_percentile_agg.md) - Improves GPORCA performance for ordered-set aggregate functions.
48
45
-[gp_pitr](gp_pitr.md) - Supports implementing point-in-time recovery for WarehousePG 6.
49
46
-[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.
50
47
-[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.
52
48
-[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.
54
49
-[isn](isn.md) - Provides support for international product numbering standards (EAN13, UPC, ISBN, ISMN, ISSN).
55
50
-[ltree](ltree.md) - Provides data types for representing labels of data stored in a hierarchical tree-like structure.
-[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.
61
62
-[postgres_fdw](postgres_fdw.md) - Provides a foreign data wrapper for accessing data stored in an external PostgreSQL or WarehousePG database.
62
63
-[sslinfo](sslinfo.md) - Provides information about the SSL certificate of the current client connection.
63
64
-[tablefunc](tablefunc.md) - Provides various functions that return tables (multiple rows).
64
-
-[timestamp9](timestamp9.md) - Provides an efficient nanosecond-precision timestamp data type.
65
65
-[uuid-ossp](uuid-ossp.md) - Provides functions to generate universally unique identifiers (UUIDs).
Copy file name to clipboardExpand all lines: docs/whpg/7x/ref_guide/modules/bundled/index.md
+8-22Lines changed: 8 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
title: Bundled Modules
3
3
description: Modules that ship with WarehousePG and don't require a separate package install.
4
4
navigation:
5
-
- auto-explain
6
5
- btree_gin
7
6
- citext
8
7
- dblink
@@ -22,56 +21,43 @@ navigation:
22
21
- postgres_fdw
23
22
- sslinfo
24
23
- tablefunc
25
-
- tsm_system_rows
26
-
- tsm_system_time
27
24
- uuid-ossp
28
25
29
26
---
30
27
31
28
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.
32
29
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.
37
30
-[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.
39
31
-[citext](citext.md) - Provides a case-insensitive, multibyte-aware text data type.
40
-
- cube - Provides a data type for representing multidimensional cubes.
41
32
-[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.
45
33
- 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.
46
37
-[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.
47
40
-[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.
48
42
-[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.
49
44
-[hstore](hstore.md) - Provides a data type for storing sets of key/value pairs within a single value.
50
45
- intarray - Provides additional functions, operators, and index support for arrays of integers with no null elements.
51
46
-[isn](isn.md) - Provides data types for international product numbering standards (EAN13, UPC, ISBN, ISMN, ISSN).
52
-
- lo - Provides support for managing large objects.
53
47
-[ltree](ltree.md) - Provides data types for representing labels of data stored in a hierarchical tree-like structure.
- 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.
66
55
-[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.
67
57
-[PL/pgSQL](../../../admin_guide/analytics/procedural_languages/pl_sql.md) - Enables writing functions, triggers, and procedural code in a SQL-like language.
68
58
-[PL/Python](../../../admin_guide/analytics/procedural_languages/pl_python.md) - Enables writing functions in Python.
69
59
-[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.
71
60
-[sslinfo](sslinfo.md) - Provides information about the SSL certificate of the current client connection.
72
61
-[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.
75
62
- unaccent - Provides a text search dictionary that removes accents from lexemes.
76
63
-[uuid-ossp](uuid-ossp.md) - Provides functions to generate universally unique identifiers (UUIDs).
77
-
- xml2 - Provides XPath querying and XSLT functionality.
0 commit comments