postgresql/contrib
Tom Lane 116a509e09 Suppress -Warray-parameter warnings in pgcrypto/sha2.c.
This is exactly the same problem as commit 1b242f42b fixed in ecpg,
but in contrib/pgcrypto.  Commit 273c458a2 eliminated the problem
here for v10 and up.  We hadn't noticed for exactly the same reasons
enumerated in bbbf22cf3.

Back-patch down to 9.2, pursuant to newly-established project policy
about keeping out-of-support branches buildable.

Discussion: https://postgr.es/m/d0316012-ece7-7b7e-2d36-9c38cb77cb3b@enterprisedb.com
2021-12-12 20:24:38 -05:00
..
adminpack Add missing errcode() in a few ereport calls. 2020-03-18 10:08:56 +05:30
auth_delay
auto_explain Fix ancient memory leak in contrib/auto_explain. 2021-02-02 13:49:08 -05:00
bloom Fix failure with lock mode used for custom relation options 2019-09-25 10:08:43 +09:00
btree_gin Fix failure of btree_gin indexscans with "char" type and </<= operators. 2021-08-10 18:10:30 -04:00
btree_gist Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
chkpass
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:11 -04:00
dict_int Ensure maxlen is at leat 1 in dict_int 2019-12-03 18:42:25 +01:00
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:12 -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
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
passwordcheck Fix handling of previous password hooks in passwordcheck 2019-08-01 09:38:20 +09:00
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Don't try to read a multi-GB pg_stat_statements file in one call. 2021-10-31 19:13:48 -04:00
pg_trgm pg_trgm: fix crash in 2-item picksplit 2020-11-12 14:57:13 +00:00
pg_visibility
pgcrypto Suppress -Warray-parameter warnings in pgcrypto/sha2.c. 2021-12-12 20:24:38 -05:00
pgrowlocks Avoid holding a directory FD open across assorted SRF calls. 2020-03-16 21:05:56 -04:00
pgstattuple
postgres_fdw postgres_fdw: Move comments about elog level in (sub)abort cleanup. 2021-10-13 19:00:09 +09:00
seg Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04:00
sepgsql Fix cache reference leak in contrib/sepgsql. 2020-04-16 14:45:54 -04:00
spi
sslinfo
start-scripts
tablefunc Disallow null category in crosstab_hash 2019-12-23 13:33:57 -05:00
tcn
test_decoding Improve display of query results in isolation tests. 2021-06-23 11:12:32 -04:00
tsearch2 Make contrib modules' installation scripts more secure. 2020-08-10 10:44:43 -04: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.