postgresql/contrib
2020-09-08 10:08:46 +02:00
..
adminpack
amcheck snapshot scalability: Don't compute global horizons while building snapshots. 2020-08-12 16:03:49 -07:00
auth_delay
auto_explain
bloom Invent "amadjustmembers" AM method for validating opclass members. 2020-08-01 17:12:47 -04:00
bool_plperl
btree_gin
btree_gist Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
citext Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
cube Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
dblink
dict_int
dict_xsyn
earthdistance Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
file_fdw Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE. 2020-08-30 12:21:51 -04:00
fuzzystrmatch
hstore Remove no-longer-usable hstore--1.0--1.1.sql update script. 2020-08-15 12:04:19 -04:00
hstore_plperl Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
hstore_plpython
intagg Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
intarray Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
ltree_plpython
oid2name Remove arbitrary restrictions on password length. 2020-09-03 20:09:18 -04:00
pageinspect Remove unused parameter 2020-09-04 08:08:23 +02:00
passwordcheck passwordcheck: Log cracklib diagnostics 2020-08-28 08:18:24 +02:00
pg_buffercache
pg_freespacemap
pg_prewarm Make xact.h usable in frontend. 2020-08-17 10:50:13 +03:00
pg_standby
pg_stat_statements Remove unused parameter 2020-09-08 10:08:46 +02:00
pg_trgm Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
pg_visibility snapshot scalability: Don't compute global horizons while building snapshots. 2020-08-12 16:03:49 -07:00
pgcrypto Replace remaining StrNCpy() by strlcpy() 2020-08-10 23:20:37 +02:00
pgrowlocks
pgstattuple Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE. 2020-08-30 12:21:51 -04:00
postgres_fdw Add support for partitioned tables and indexes in REINDEX 2020-09-08 10:09:22 +09:00
seg Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
sepgsql Fix compilation warnings with libselinux 3.1 in contrib/sepgsql/ 2020-08-14 09:30:34 +09:00
spi
sslinfo
start-scripts
tablefunc Remove unused parameter 2020-09-06 09:32:16 +02:00
tcn
test_decoding Add regression tests for REPLICA IDENTITY with dropped indexes 2020-08-26 20:42:27 +09:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo Remove arbitrary restrictions on password length. 2020-09-03 20:09:18 -04:00
xml2
contrib-global.mk
Makefile
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.