postgrespro-std-17-contribTable of Contents
pg_statistic tablejsonb data typeINSERT,
UPDATE, DELETE, or
SELECT INTO operationsRUM indexescrosstab and others)SYSTEM_ROWS sampling method for TABLESAMPLESYSTEM_TIME sampling method for TABLESAMPLEThis appendix, Appendix G, and Appendix I contain information on the optional components available in the Postgres Pro Standard distribution. These include porting tools, analysis utilities, and plug-in features that are not part of the core Postgres Pro system. They are separate mainly because they address a limited audience or are too experimental to be part of the main source tree. This does not preclude their usefulness.
This appendix and Appendix G cover the extensions and other server plug-in modules. Appendix I covers the utility programs.
Many components supply new user-defined functions, operators, or types, packaged as extensions. To make use of one of these extensions, after you have installed the code you need to register the new SQL objects in the database system. This is done by executing a CREATE EXTENSION command. In a fresh database, you can simply do
CREATE EXTENSION extension_name;
This command registers the new SQL objects in the current database only,
so you need to run it in every database in which you want
the extension's facilities to be available. Alternatively, run it in
database template1 so that the extension will be copied into
subsequently-created databases by default.
For all extensions, the CREATE EXTENSION command must be
run by a database superuser, unless the extension is
considered “trusted”. Trusted extensions can be run by any
user who has CREATE privilege on the current
database. Extensions that are trusted are identified as such in the
sections that follow. Generally, trusted extensions are ones that cannot
provide access to outside-the-database functionality.
The following extensions are trusted in a default installation:
| btree_gin | fuzzystrmatch | ltree | tcn |
| btree_gist | hstore | pgcrypto | tsm_system_rows |
| citext | intarray | pg_trgm | tsm_system_time |
| cube | isn | seg | unaccent |
| dict_int | lo | tablefunc | uuid-ossp |
Many extensions allow you to install their objects in a schema of your
choice. To do that, add SCHEMA
to the schema_nameCREATE EXTENSION
command. By default, the objects will be placed in your current creation
target schema, which in turn defaults to public.
Note, however, that some of these components are not “extensions” in this sense, but are loaded into the server in some other way, for instance by way of shared_preload_libraries. See the documentation of each component for details.
This appendix contains modules and extensions that are made available in
Postgres Pro Standard
as a separate subpackage postgrespro-std-17-contrib.
Note that the toastapi extension to add custom TOASTers
is also available in postgrespro-std-17-contrib
(see Section 63.2.3 for details).