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
Alvaro Herrera 0afc0a7841 Fix unaccent generation script in Windows 6 years ago
..
adminpack Update copyright for 2019 7 years ago
amcheck amcheck: Skip unlogged relations during recovery. 6 years ago
auth_delay Update copyright for 2019 7 years ago
auto_explain Fix contrib/auto_explain to not cause problems in parallel workers. 6 years ago
bloom Fix many typos and inconsistencies 6 years ago
btree_gin
btree_gist Phase 2 pgindent run for v12. 6 years ago
citext Fix typos in various places 6 years ago
cube Fix inconsistencies and typos in the tree 6 years ago
dblink Phase 2 pgindent run for v12. 6 years ago
dict_int Update copyright for 2019 7 years ago
dict_xsyn Update copyright for 2019 7 years ago
earthdistance
file_fdw Represent Lists as expansible arrays, not chains of cons-cells. 6 years ago
fuzzystrmatch Fix inconsistencies and typos in the tree, take 10 6 years ago
hstore Fix inconsistencies and typos in the tree, take 11 6 years ago
hstore_plperl Clean up PL/Perl's handling of the _() macro. 6 years ago
hstore_plpython Avoid Python memory leaks in hstore_plpython and jsonb_plpython. 7 years ago
intagg
intarray Fix intarray's GiST opclasses to not fail for empty arrays with <@. 6 years ago
isn Update copyright for 2019 7 years ago
jsonb_plperl Fix handling of "undef" in contrib/jsonb_plperl. 6 years ago
jsonb_plpython Fix more typos and inconsistencies in the tree 6 years ago
lo
ltree Fix inconsistencies and typos in the tree, take 10 6 years ago
ltree_plpython
oid2name Make use of generic logging in vacuumlo and oid2name 6 years ago
pageinspect Don't include utils/array.h from acl.h. 6 years ago
passwordcheck Fix handling of previous password hooks in passwordcheck 6 years ago
pg_buffercache Remove WITH OIDS support, change oid catalog column visibility. 7 years ago
pg_freespacemap Replace heapam.h includes with {table, relation}.h where applicable. 7 years ago
pg_prewarm Fix more typos and inconsistencies in the tree 6 years ago
pg_standby Fix inconsistencies and typos in the tree, take 9 6 years ago
pg_stat_statements pg_stat_statements: add missing check for pgss_enabled(). 6 years ago
pg_trgm Represent Lists as expansible arrays, not chains of cons-cells. 6 years ago
pg_visibility Phase 2 pgindent run for v12. 6 years ago
pgcrypto Fix inconsistencies and typos in the tree, take 10 6 years ago
pgrowlocks Only allow heap in a number of contrib modules. 7 years ago
pgstattuple Fix inconsistencies and typos in the tree 6 years ago
postgres_fdw Rationalize use of list_concat + list_copy combinations. 6 years ago
seg Change floating-point output format for improved performance. 7 years ago
sepgsql Fix inconsistencies and typos in the tree, take 10 6 years ago
spi Fix inconsistencies and typos in the tree, take 10 6 years ago
sslinfo
start-scripts
tablefunc Phase 2 pgindent run for v12. 6 years ago
tcn Update copyright for 2019 7 years ago
test_decoding Do more cleanup of isolation tests for test_decoding 6 years ago
tsm_system_rows Phase 2 pgindent run for v12. 6 years ago
tsm_system_time Phase 2 pgindent run for v12. 6 years ago
unaccent Fix unaccent generation script in Windows 6 years ago
uuid-ossp Update copyright for 2019 7 years ago
vacuumlo Make use of generic logging in vacuumlo and oid2name 6 years ago
xml2 Phase 2 pgindent run for v12. 6 years ago
Makefile
README
contrib-global.mk

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.