postgresql/contrib
Alvaro Herrera 94d626ff5a Use materialize SRF mode in brin_page_items
This function was using the single-value-per-call mechanism, but the
code relied on a relcache entry that wasn't kept open across calls.
This manifested as weird errors in buildfarm during the short time that
the "brin-1" isolation test lived.

Backpatch to 9.5, where it was introduced.
2015-08-13 13:02:10 -03:00
..
adminpack
auth_delay
auto_explain
btree_gin pgindent run for 9.5 2015-05-23 21:35:49 -04:00
btree_gist pgindent run for 9.5 2015-05-23 21:35:49 -04:00
chkpass
citext
cube Move strategy numbers to include/access/stratnum.h 2015-05-15 17:03:16 -03:00
dblink
dict_int
dict_xsyn
earthdistance
file_fdw TABLESAMPLE, SQL Standard and extensible 2015-05-15 14:37:10 -04:00
fuzzystrmatch pgindent run for 9.5 2015-05-23 21:35:49 -04:00
hstore pgindent run for 9.5 2015-05-23 21:35:49 -04:00
hstore_plperl Enable transforms modules to build and test on Cygwin. 2015-07-18 10:09:04 -04:00
hstore_plpython Enable transforms modules to build and test on Cygwin. 2015-07-18 10:09:04 -04:00
intagg
intarray Add selectivity estimation functions for intarray operators. 2015-07-21 20:59:24 +03:00
isn contrib/isn now needs a .gitignore file. 2015-08-02 23:57:32 -04:00
lo
ltree pgindent run for 9.5 2015-05-23 21:35:49 -04:00
ltree_plpython Enable transforms modules to build and test on Cygwin. 2015-07-18 10:09:04 -04:00
oid2name
pageinspect Use materialize SRF mode in brin_page_items 2015-08-13 13:02:10 -03:00
passwordcheck
pg_buffercache pgindent run for 9.5 2015-05-23 21:35:49 -04:00
pg_freespacemap
pg_prewarm
pg_standby Make use of xlog_internal.h's macros in WAL-related utilities. 2015-07-02 10:35:38 +09:00
pg_stat_statements Redesign tablesample method API, and do extensive code review. 2015-07-25 14:39:00 -04:00
pg_trgm This supports the triconsistent function for pg_trgm GIN opclass 2015-07-20 18:18:48 +03:00
pgcrypto pgindent run for 9.5 2015-05-23 21:35:49 -04:00
pgrowlocks
pgstattuple Prevent pgstattuple() from reporting BRIN as unknown index. 2015-07-14 22:36:51 +09:00
postgres_fdw Use appendStringInfoString/Char et al where appropriate. 2015-07-02 12:36:03 +03:00
seg Move strategy numbers to include/access/stratnum.h 2015-05-15 17:03:16 -03:00
sepgsql
spi Collection of typo fixes. 2015-05-20 16:56:22 +03:00
sslinfo
start-scripts
tablefunc Fix a number of places that produced XX000 errors in the regression tests. 2015-08-02 23:49:19 -04:00
tcn
test_decoding Add confirmed_flush column to pg_replication_slots. 2015-08-10 13:28:18 +02:00
tsearch2 Add an optional missing_ok argument to SQL function current_setting(). 2015-07-02 16:41:07 -04:00
tsm_system_rows Redesign tablesample method API, and do extensive code review. 2015-07-25 14:39:00 -04:00
tsm_system_time Some platforms now need contrib/tsm_system_time to be linked with libm. 2015-07-25 16:37:12 -04:00
unaccent
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile Finish removing pg_audit 2015-05-28 12:48:25 -04:00
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.