postgresql/contrib
2019-02-16 15:28:27 -08:00
..
adminpack
amcheck Avoid amcheck inline compression false positives. 2019-02-06 15:54:19 -08:00
auth_delay
auto_explain
bloom Refactor index cost estimation functions in view of IndexClause changes. 2019-02-15 13:05:19 -05:00
btree_gin
btree_gist Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
citext
cube Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
dblink
dict_int
dict_xsyn
earthdistance
file_fdw Split create_foreignscan_path() into three functions. 2019-02-07 13:11:12 -05:00
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
isn
jsonb_plperl
jsonb_plpython
lo
ltree Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
ltree_plpython
oid2name
pageinspect Make FSM test portable. 2019-02-04 10:08:29 +05:30
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Allow user control of CTE materialization, and change the default behavior. 2019-02-16 16:11:12 -05:00
pg_trgm Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
pg_visibility
pgcrypto Suppress another case of MSVC warning 4146. 2019-02-16 15:28:27 -08:00
pgrowlocks
pgstattuple
postgres_fdw Allow user control of CTE materialization, and change the default behavior. 2019-02-16 16:11:12 -05:00
seg Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Relax overly strict assertion 2019-02-12 18:42:37 -03:00
tsm_system_rows Refactor planner's header files. 2019-01-29 15:48:51 -05:00
tsm_system_time Refactor planner's header files. 2019-01-29 15:48:51 -05:00
unaccent Add combining characters to unaccent.rules. 2019-02-01 15:23:01 +01:00
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.