postgresql/contrib
Michael Paquier d3c09b9b13 Add PGXS options to control TAP and isolation tests, take two
The following options are added for extensions:
- TAP_TESTS, to allow an extention to run TAP tests which are the ones
present in t/*.pl.  A subset of tests can always be run with the
existing PROVE_TESTS for developers.
- ISOLATION, to define a list of isolation tests.
- ISOLATION_OPTS, to pass custom options to isolation_tester.

A couple of custom Makefile rules have been accumulated across the tree
to cover the lack of facility in PGXS for a couple of releases when
using those test suites, which are all now replaced with the new flags,
without reducing the test coverage.  Note that tests of contrib/bloom/
are not enabled yet, as those are proving unstable in the buildfarm.

Author: Michael Paquier
Reviewed-by: Adam Berlin, Álvaro Herrera, Tom Lane, Nikolay Shaplov,
Arthur Zakirov
Discussion: https://postgr.es/m/20180906014849.GG2726@paquier.xyz
2018-12-03 09:27:35 +09:00
..
adminpack Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
amcheck
auth_delay
auto_explain Fix issues around EXPLAIN with JIT. 2018-10-03 12:48:37 -07:00
bloom Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09:00
btree_gin
btree_gist Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
citext Add a 64-bit hash function for type citext. 2018-11-23 13:24:45 -05:00
cube Make float exponent output on Windows look the same as elsewhere. 2018-10-12 11:14:27 -04:00
dblink Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
dict_int
dict_xsyn
earthdistance
file_fdw Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
fuzzystrmatch
hstore Fix hstore hash function for empty hstores upgraded from 8.4. 2018-11-24 09:59:49 +00:00
hstore_plperl Still further rethinking of build changes for macOS Mojave. 2018-10-18 14:55:23 -04:00
hstore_plpython
intagg
intarray Avoid crashes in contrib/intarray gist__int_ops (bug #15518) 2018-11-24 08:48:36 +00:00
isn
jsonb_plperl Still further rethinking of build changes for macOS Mojave. 2018-10-18 14:55:23 -04:00
jsonb_plpython Remove redundant allocation 2018-10-05 17:10:58 +02:00
lo
ltree Allow btree comparison functions to return INT_MIN. 2018-10-05 16:01:29 -04:00
ltree_plpython
oid2name Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09:00
pageinspect Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
passwordcheck
pg_buffercache Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
pg_freespacemap
pg_prewarm Silence compiler warnings 2018-11-23 13:01:05 -03:00
pg_standby Integrate recovery.conf into postgresql.conf 2018-11-25 16:33:40 +01:00
pg_stat_statements Revoke pg_stat_statements_reset() permissions 2018-09-25 09:55:44 +09:00
pg_trgm
pg_visibility Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
pgcrypto Allow btree comparison functions to return INT_MIN. 2018-10-05 16:01:29 -04:00
pgrowlocks
pgstattuple
postgres_fdw C comment: remove extra '*' 2018-11-28 07:34:10 -05:00
seg Make float exponent output on Windows look the same as elsewhere. 2018-10-12 11:14:27 -04:00
sepgsql Blind attempt at fixing sepgsql output for 578b22. 2018-11-20 21:02:38 -08:00
spi Remove timetravel extension. 2018-10-11 11:43:56 -07:00
sslinfo
start-scripts
tablefunc
tcn
test_decoding Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09:00
tsm_system_rows
tsm_system_time
unaccent Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
uuid-ossp
vacuumlo Add PGXS options to control TAP and isolation tests, take two 2018-12-03 09:27:35 +09: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.