postgresql/contrib
Robert Haas 42d4257a06 Update pg_freespacemap extension for parallel query.
All functions provided by this extension are PARALLEL SAFE.

Andreas Karlsson
2016-06-09 17:18:16 -04:00
..
adminpack
auth_delay
auto_explain
bloom Fix loose ends for SQL ACCESS METHOD objects 2016-06-07 17:59:34 -04:00
btree_gin
btree_gist Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
chkpass
citext Update citext extension for parallel query. 2016-06-07 11:26:41 -04:00
cube Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
dblink Revert CREATE INDEX ... INCLUDING ... 2016-04-08 21:52:13 +03:00
dict_int
dict_xsyn
earthdistance Update earthdistance extension for parallel query. 2016-06-07 11:26:41 -04:00
file_fdw
fuzzystrmatch Update fuzzystrmatch extension for parallel query. 2016-06-07 11:26:41 -04:00
hstore Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
hstore_plperl
hstore_plpython
intagg Update intagg extension for parallel query. 2016-06-07 11:26:41 -04:00
intarray Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
isn Update isn extension for parallel query. 2016-06-07 11:26:42 -04:00
lo Update lo extension for parallel query. 2016-06-07 11:26:42 -04:00
ltree Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
ltree_plpython
oid2name
pageinspect Update pageinspect extension for parallel query. 2016-06-09 17:18:09 -04:00
passwordcheck
pg_buffercache Update pg_buffercache extension for parallel query. 2016-06-09 17:18:12 -04:00
pg_freespacemap Update pg_freespacemap extension for parallel query. 2016-06-09 17:18:16 -04:00
pg_prewarm
pg_standby
pg_stat_statements
pg_trgm Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
pg_visibility Revert no-op changes to BufferGetPage() 2016-04-20 08:31:19 -05:00
pgcrypto Update pgcrypto extension for parallel query. 2016-06-09 17:18:14 -04:00
pgrowlocks
pgstattuple Remove unused macros. 2016-05-02 10:07:49 +03:00
postgres_fdw postgres_fdw: Fix the fix for crash when pushing down multiple joins. 2016-05-16 11:28:28 -04:00
seg Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn Revert CREATE INDEX ... INCLUDING ... 2016-04-08 21:52:13 +03:00
test_decoding Fix core dump in ReorderBufferRestoreChange on alignment-picky platforms. 2016-04-14 19:42:21 -04:00
tsearch2 Update contrib/tsearch2/expected/tsearch2_1.out for phrase FTS. 2016-06-04 00:49:42 -04:00
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
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.