postgresql/contrib
Tom Lane 9c3844bbca Fix contrib/seg regression test in v11.
In 20e36c6d2, I neglected to update seg_1.out (which doesn't
exist in newer branches).

Per buildfarm, via Andrew Dunstan.

Discussion: https://postgr.es/m/7611b36f-7d57-5234-ad68-7d25a81e0f13@dunslane.net
2021-06-08 10:57:39 -04:00
..
adminpack Read until EOF vice stat-reported size in read_binary_file 2020-07-04 06:29:03 -04:00
amcheck Restore lost amcheck TOAST test coverage. 2020-07-31 15:34:23 -07:00
auth_delay
auto_explain Fix ancient memory leak in contrib/auto_explain. 2021-02-02 13:49:08 -05:00
bloom
btree_gin
btree_gist Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
citext Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
cube Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
dblink Initialize dblink remoteConn struct in all cases 2020-05-28 13:45:02 -04:00
dict_int
dict_xsyn
earthdistance Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
file_fdw
fuzzystrmatch
hstore Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
hstore_plperl
hstore_plpython Fix broken ruleutils support for function TRANSFORM clauses. 2021-01-25 13:03:11 -05:00
intagg Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
intarray Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
isn
jsonb_plperl
jsonb_plpython
lo Fix bogus CALLED_AS_TRIGGER() defenses. 2020-04-03 11:24:56 -04:00
ltree Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
ltree_plpython
oid2name Report the true database name on connection errors 2021-01-26 16:42:13 -03:00
pageinspect Disable vacuum page skipping in selected test cases. 2021-01-20 11:49:29 -05:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Fix race condition between shutdown and unstarted background workers. 2020-12-24 17:00:43 -05:00
pg_standby
pg_stat_statements
pg_trgm pg_trgm: fix crash in 2-item picksplit 2020-11-12 14:57:04 +00:00
pg_visibility Disable vacuum page skipping in selected test cases. 2021-01-20 11:49:29 -05:00
pgcrypto pgcrypto: Detect errors with EVP calls from OpenSSL 2020-12-08 15:22:48 +09:00
pgrowlocks Avoid holding a directory FD open across assorted SRF calls. 2020-03-16 21:05:54 -04:00
pgstattuple
postgres_fdw Update obsolete comment. 2021-03-30 13:00:05 +09:00
seg Fix contrib/seg regression test in v11. 2021-06-08 10:57:39 -04:00
sepgsql Fix cache reference leak in contrib/sepgsql. 2020-04-16 14:45:54 -04:00
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Propagate ALTER TABLE ... SET STORAGE to indexes 2020-05-08 09:30:57 +02:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo Report the true database name on connection errors 2021-01-26 16:42:13 -03: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.