postgresql/contrib
Peter Geoghegan 3a3be80641 Remove obsolete amcheck comment.
Oversight in commit d114cc5387.
2020-08-06 16:23:52 -07:00
..
adminpack Read until EOF vice stat-reported size in read_binary_file 2020-07-04 06:26:53 -04:00
amcheck Remove obsolete amcheck comment. 2020-08-06 16:23:52 -07:00
auth_delay
auto_explain Add the option to report WAL usage in EXPLAIN and auto_explain. 2020-04-06 08:02:15 +05:30
bloom Invent "amadjustmembers" AM method for validating opclass members. 2020-08-01 17:12:47 -04:00
bool_plperl
btree_gin
btree_gist Update btree_gist extension for parallel query 2020-07-20 13:59:50 +03:00
citext Add current substring regular expression syntax 2020-06-29 11:05:00 +02:00
cube
dblink Initialize dblink remoteConn struct in all cases 2020-05-28 13:44:54 -04:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Avoid using %c printf format for potentially non-ASCII characters. 2020-06-29 11:41:19 -04:00
hstore_plperl
hstore_plpython
intagg
intarray Initial pgindent and pgperltidy run for v13. 2020-05-14 13:06:50 -04:00
isn
jsonb_plperl Support infinity and -infinity in the numeric data type. 2020-07-22 19:19:44 -04:00
jsonb_plpython Support infinity and -infinity in the numeric data type. 2020-07-22 19:19:44 -04:00
lo Fix bogus CALLED_AS_TRIGGER() defenses. 2020-04-03 11:24:56 -04:00
ltree Use query collation, not column's collation, while examining statistics. 2020-06-05 16:18:50 -04:00
ltree_plpython
oid2name
pageinspect Avoid using %c printf format for potentially non-ASCII characters. 2020-06-29 11:41:19 -04:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm code: replace 'master' with 'leader' where appropriate. 2020-07-08 12:58:32 -07:00
pg_standby
pg_stat_statements pg_stat_statements: track number of rows processed by some utility commands. 2020-07-29 23:21:55 +09:00
pg_trgm Spelling adjustments 2020-06-09 10:41:41 +02:00
pg_visibility Cache smgrnblocks() results in recovery. 2020-07-31 14:29:52 +12:00
pgcrypto Fix corner case with 16kB-long decompression in pgcrypto, take 2 2020-07-27 15:58:32 +09:00
pgrowlocks
pgstattuple pgstattuple: Have pgstattuple_approx accept TOAST tables 2020-06-30 00:56:43 +02:00
postgres_fdw Revert "Use CP_SMALL_TLIST for hash aggregate" 2020-07-12 22:59:32 -07:00
seg Use perl warnings pragma consistently 2020-04-13 11:55:45 -04:00
sepgsql Fix compilation failure with sepgsql 2020-07-15 09:42:21 +09:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Extend the logical decoding output plugin API with stream methods. 2020-07-28 08:09:44 +05:30
tsm_system_rows
tsm_system_time
unaccent Update Unicode data to Unicode 13.0.0 and CLDR 37 2020-04-24 09:52:59 +02:00
uuid-ossp
vacuumlo
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.