You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib
Peter Geoghegan fcf3b6917b Rename nbtree tuple macros. 6 years ago
..
adminpack Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
amcheck Rename nbtree tuple macros. 6 years ago
auth_delay Update copyright for 2019 7 years ago
auto_explain Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
bloom Make the order of the header file includes consistent. 6 years ago
btree_gin Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
btree_gist Make the order of the header file includes consistent. 6 years ago
citext Fix typos in various places 6 years ago
cube Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
dblink libq support for sslpassword connection param, DER format keys 6 years ago
dict_int Ensure maxlen is at leat 1 in dict_int 6 years ago
dict_xsyn Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
earthdistance Fix earthdistance test suite function name typo. 7 years ago
file_fdw Represent Lists as expansible arrays, not chains of cons-cells. 6 years ago
fuzzystrmatch Remove useless "return;" lines 6 years ago
hstore Add reusable routine for making arrays unique. 6 years ago
hstore_plperl Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
hstore_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
intagg Schema-qualify some references to regprocedure. 9 years ago
intarray Add reusable routine for making arrays unique. 6 years ago
isn Make the order of the header file includes consistent in contrib modules. 6 years ago
jsonb_plperl Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
jsonb_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
lo lo: Add test suite 8 years ago
ltree Remove useless "return;" lines 6 years ago
ltree_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
oid2name Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pageinspect Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
passwordcheck Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_buffercache Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_freespacemap Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_prewarm Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_standby Remove useless "return;" lines 6 years ago
pg_stat_statements Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_trgm Add reusable routine for making arrays unique. 6 years ago
pg_visibility Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pgcrypto Remove useless "return;" lines 6 years ago
pgrowlocks Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pgstattuple Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
postgres_fdw Further adjust EXPLAIN's choices of table alias names. 6 years ago
seg Remove useless "return;" lines 6 years ago
sepgsql Remove useless "return;" lines 6 years ago
spi Make the order of the header file includes consistent in contrib modules. 6 years ago
sslinfo Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc Make the order of the header file includes consistent in contrib modules. 6 years ago
tcn Make the order of the header file includes consistent in contrib modules. 6 years ago
test_decoding Add logical_decoding_work_mem to limit ReorderBuffer memory usage. 6 years ago
tsm_system_rows Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
tsm_system_time Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
unaccent Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
uuid-ossp Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
vacuumlo Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
xml2 Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
Makefile Transforms for jsonb to PL/Perl 7 years ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 9 years ago

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.