postgresql/contrib
Noah Misch 6b87d423dc Lock down regression testing temporary clusters on Windows.
Use SSPI authentication to allow connections exclusively from the OS
user that launched the test suite.  This closes on Windows the
vulnerability that commit be76a6d39e
closed on other platforms.  Users of "make installcheck" or custom test
harnesses can run "pg_regress --config-auth=DATADIR" to activate the
same authentication configuration that "make check" would use.
Back-patch to 9.0 (all supported versions).

Security: CVE-2014-0067
2014-12-17 22:48:45 -05:00
..
adminpack
auth_delay
auto_explain
btree_gin
btree_gist
chkpass
citext
cube
dblink Lock down regression testing temporary clusters on Windows. 2014-12-17 22:48:45 -05:00
dict_int
dict_xsyn
dummy_seclabel
earthdistance
file_fdw
fuzzystrmatch
hstore Fix hstore_to_json_loose's detection of valid JSON number values. 2014-12-01 11:40:30 -05:00
intagg
intarray
isn
lo
ltree
oid2name
pageinspect
passwordcheck
pg_archivecleanup
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements
pg_test_fsync Avoid file descriptor leak in pg_test_fsync. 2014-11-19 12:13:14 -05:00
pg_test_timing
pg_trgm
pg_upgrade Lock down regression testing temporary clusters on Windows. 2014-12-17 22:48:45 -05:00
pg_upgrade_support
pg_xlogdump
pgbench Suppress bogus statistics when pgbench failed to complete any transactions. 2014-12-16 14:53:58 -05:00
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw Revert misguided change to postgres_fdw FOR UPDATE/SHARE code. 2014-12-12 12:41:52 -05:00
seg
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Don't skip SQL backends in logical decoding for visibility computation. 2014-12-02 23:52:44 +01:00
test_parser
test_shm_mq
tsearch2
unaccent
uuid-ossp
vacuumlo
worker_spi
xml2 Free libxml2/libxslt resources in a safer order. 2014-11-27 11:12:47 -05: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 "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.