postgresql/contrib
Alexander Zhirov abe9f0a7ff v15.2 2023-05-10 00:11:15 +03:00
..
adminpack v15.2 2023-05-10 00:11:15 +03:00
amcheck v15.2 2023-05-10 00:11:15 +03:00
auth_delay v15.2 2023-05-10 00:11:15 +03:00
auto_explain v15.2 2023-05-10 00:11:15 +03:00
basebackup_to_shell v15.2 2023-05-10 00:11:15 +03:00
basic_archive v15.2 2023-05-10 00:11:15 +03:00
bloom v15.2 2023-05-10 00:11:15 +03:00
bool_plperl v15.2 2023-05-10 00:11:15 +03:00
btree_gin v15.2 2023-05-10 00:11:15 +03:00
btree_gist v15.2 2023-05-10 00:11:15 +03:00
citext v15.2 2023-05-10 00:11:15 +03:00
cube v15.2 2023-05-10 00:11:15 +03:00
dblink v15.2 2023-05-10 00:11:15 +03:00
dict_int v15.2 2023-05-10 00:11:15 +03:00
dict_xsyn v15.2 2023-05-10 00:11:15 +03:00
earthdistance v15.2 2023-05-10 00:11:15 +03:00
file_fdw v15.2 2023-05-10 00:11:15 +03:00
fuzzystrmatch v15.2 2023-05-10 00:11:15 +03:00
hstore v15.2 2023-05-10 00:11:15 +03:00
hstore_plperl v15.2 2023-05-10 00:11:15 +03:00
hstore_plpython v15.2 2023-05-10 00:11:15 +03:00
intagg v15.2 2023-05-10 00:11:15 +03:00
intarray v15.2 2023-05-10 00:11:15 +03:00
isn v15.2 2023-05-10 00:11:15 +03:00
jsonb_plperl v15.2 2023-05-10 00:11:15 +03:00
jsonb_plpython v15.2 2023-05-10 00:11:15 +03:00
lo v15.2 2023-05-10 00:11:15 +03:00
ltree v15.2 2023-05-10 00:11:15 +03:00
ltree_plpython v15.2 2023-05-10 00:11:15 +03:00
oid2name v15.2 2023-05-10 00:11:15 +03:00
old_snapshot v15.2 2023-05-10 00:11:15 +03:00
pageinspect v15.2 2023-05-10 00:11:15 +03:00
passwordcheck v15.2 2023-05-10 00:11:15 +03:00
pg_buffercache v15.2 2023-05-10 00:11:15 +03:00
pg_freespacemap v15.2 2023-05-10 00:11:15 +03:00
pg_prewarm v15.2 2023-05-10 00:11:15 +03:00
pg_stat_statements v15.2 2023-05-10 00:11:15 +03:00
pg_surgery v15.2 2023-05-10 00:11:15 +03:00
pg_trgm v15.2 2023-05-10 00:11:15 +03:00
pg_visibility v15.2 2023-05-10 00:11:15 +03:00
pg_walinspect v15.2 2023-05-10 00:11:15 +03:00
pgcrypto v15.2 2023-05-10 00:11:15 +03:00
pgrowlocks v15.2 2023-05-10 00:11:15 +03:00
pgstattuple v15.2 2023-05-10 00:11:15 +03:00
postgres_fdw v15.2 2023-05-10 00:11:15 +03:00
seg v15.2 2023-05-10 00:11:15 +03:00
sepgsql v15.2 2023-05-10 00:11:15 +03:00
spi v15.2 2023-05-10 00:11:15 +03:00
sslinfo v15.2 2023-05-10 00:11:15 +03:00
start-scripts v15.2 2023-05-10 00:11:15 +03:00
tablefunc v15.2 2023-05-10 00:11:15 +03:00
tcn v15.2 2023-05-10 00:11:15 +03:00
test_decoding v15.2 2023-05-10 00:11:15 +03:00
tsm_system_rows v15.2 2023-05-10 00:11:15 +03:00
tsm_system_time v15.2 2023-05-10 00:11:15 +03:00
unaccent v15.2 2023-05-10 00:11:15 +03:00
uuid-ossp v15.2 2023-05-10 00:11:15 +03:00
vacuumlo v15.2 2023-05-10 00:11:15 +03:00
xml2 v15.2 2023-05-10 00:11:15 +03:00
Makefile v15.2 2023-05-10 00:11:15 +03:00
README v15.2 2023-05-10 00:11:15 +03:00
contrib-global.mk v15.2 2023-05-10 00:11:15 +03:00

README

The PostgreSQL contrib tree
---------------------------

This subtree contains porting tools, analysis utilities, and plug-in
features that are not part of the core PostgreSQL system, 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.

User documentation for each module appears in the main SGML
documentation.

When building from the source distribution, these modules are not
built automatically, unless you build the "world" target.  You can
also build and install them all by running "make all" and "make
install" in this directory; or to build and install just one selected
module, do the same in that module's subdirectory.

Some directories supply new user-defined functions, operators, or
types.  To make use of one of these modules, after you have installed
the code you need to register the new SQL objects in the database
system by executing a CREATE EXTENSION command.  In a fresh database,
you can simply do

    CREATE EXTENSION module_name;

See the PostgreSQL documentation for more information about this
procedure.