postgresql/contrib
Robert Haas 4ab8ded9fb pgcrypto's encrypt() supports AES-128, AES-192, and AES-256
Previously, only 128 was mentioned, but the others are also supported.

Thomas Munro, reviewed by Michael Paquier and extended a bit by me.

Discussion: http://postgr.es/m/CAEepm=1XbBHXYJKofGjnM2Qfz-ZBVqhGU4AqvtgR+Hegy4fdKg@mail.gmail.com
2018-01-31 16:33:46 -05:00
..
adminpack Fix pg_file_write() error handling. 2017-03-12 19:36:15 -04:00
auth_delay
auto_explain
btree_gin Make contrib regression tests safe for Danish locale. 2016-07-21 16:52:36 -04:00
btree_gist Ensure plan stability in contrib/btree_gist regression test. 2016-05-12 20:04:41 -04:00
chkpass
citext Make contrib regression tests safe for Danish locale. 2016-07-21 16:52:36 -04:00
cube Fix typos in comments. 2017-02-06 11:34:28 +02:00
dblink Fix ancient connection leak in dblink 2017-03-11 13:33:22 -08:00
dict_int
dict_xsyn
dummy_seclabel
earthdistance Fix typos in comments. 2017-02-06 11:34:28 +02:00
file_fdw
fuzzystrmatch
hstore Avoid formally-undefined use of memcpy() in hstoreUniquePairs(). 2017-11-25 14:42:46 -05:00
intagg
intarray Fix -e option in contrib/intarray/bench/bench.pl. 2016-08-17 15:51:10 -04:00
isn Fix typos in comments. 2017-02-06 11:34:28 +02:00
lo
ltree Spelling fixes 2017-03-14 13:45:45 -04:00
oid2name
pageinspect Remove unused macros. 2016-05-02 10:09:03 +03:00
passwordcheck
pg_archivecleanup Fix new warnings from GCC 7 2017-05-15 13:31:38 -04:00
pg_buffercache
pg_freespacemap
pg_standby Fix new warnings from GCC 7 2017-05-15 13:31:38 -04:00
pg_stat_statements Avoid unlikely data-loss scenarios due to rename() without fsync. 2016-03-09 18:53:54 -08:00
pg_test_fsync Avoid depending on non-POSIX behavior of fcntl(2). 2017-04-21 15:55:56 -04:00
pg_test_timing
pg_trgm Further fix pg_trgm's extraction of trigrams from regular expressions. 2017-04-14 14:52:03 -04:00
pg_upgrade pg_upgrade: start/stop new server after pg_resetwal 2017-06-20 13:20:02 -04:00
pg_upgrade_support
pg_xlogdump pg_xlogdump: Remove extra newline in error message 2017-03-08 09:59:52 -05:00
pgbench Fix "pg_bench -C -M prepared". 2016-03-16 23:18:07 -04:00
pgcrypto pgcrypto's encrypt() supports AES-128, AES-192, and AES-256 2018-01-31 16:33:46 -05:00
pgrowlocks Fix handling of multixacts predating pg_upgrade 2016-06-24 18:29:28 -04:00
pgstattuple Remove unused macros. 2016-05-02 10:09:03 +03:00
postgres_fdw Stabilize postgres_fdw regression tests. 2017-07-21 14:20:43 -04:00
seg Fix typos in comments. 2017-02-06 11:34:28 +02:00
sepgsql Silence compiler warning in sepgsql 2017-04-06 14:24:50 -07:00
spi Fix typos in comments. 2017-02-06 11:34:28 +02:00
sslinfo Fix error message wording in previous sslinfo commit 2015-09-08 11:10:20 -03:00
start-scripts Provide modern examples of how to auto-start Postgres on macOS. 2017-11-17 12:47:44 -05:00
tablefunc
tcn
test_parser
tsearch2 Fix typos in comments. 2017-02-06 11:34:28 +02:00
unaccent
uuid-ossp
vacuumlo
worker_spi worker_spi: Call pgstat_report_stat. 2016-09-28 12:40:23 -04:00
xml2 Fix typos in comments. 2017-02-06 11:34:28 +02:00
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 "gmake all" and "gmake
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.