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
Michael Paquier 28d1601ad9 pgcrypto: Detect errors with EVP calls from OpenSSL 5 years ago
..
adminpack
amcheck Fix some typos 5 years ago
auth_delay
auto_explain
bloom
bool_plperl
btree_gin
btree_gist Expose internal function for converting int64 to numeric 6 years ago
citext Make contrib modules' installation scripts more secure. 6 years ago
cube Make contrib modules' installation scripts more secure. 6 years ago
dblink Move catalog index declarations 5 years ago
dict_int
dict_xsyn
earthdistance Make contrib modules' installation scripts more secure. 6 years ago
file_fdw Remove leftover comments, left behind by removal of WITH OIDS. 5 years ago
fuzzystrmatch
hstore Remove no-longer-usable hstore--1.0--1.1.sql update script. 6 years ago
hstore_plperl Make contrib modules' installation scripts more secure. 6 years ago
hstore_plpython
intagg Make contrib modules' installation scripts more secure. 6 years ago
intarray Make contrib modules' installation scripts more secure. 6 years ago
isn
jsonb_plperl Expose internal function for converting int64 to numeric 6 years ago
jsonb_plpython
lo
ltree Make contrib modules' installation scripts more secure. 6 years ago
ltree_plpython
oid2name Remove arbitrary restrictions on password length. 6 years ago
old_snapshot Add new 'old_snapshot' contrib module. 6 years ago
pageinspect Remove unused parameter 6 years ago
passwordcheck passwordcheck: Log cracklib diagnostics 6 years ago
pg_buffercache
pg_freespacemap
pg_prewarm Fix and simplify some usages of TimestampDifference(). 5 years ago
pg_standby
pg_stat_statements pg_stat_statements: Track number of times pgss entries were deallocated. 5 years ago
pg_surgery pg_surgery: Try to stabilize regression tests. 6 years ago
pg_trgm Handle equality operator in contrib/pg_trgm 5 years ago
pg_visibility snapshot scalability: Don't compute global horizons while building snapshots. 6 years ago
pgcrypto pgcrypto: Detect errors with EVP calls from OpenSSL 5 years ago
pgrowlocks
pgstattuple Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE. 6 years ago
postgres_fdw Move per-agg and per-trans duplicate finding to the planner. 5 years ago
seg Make contrib modules' installation scripts more secure. 6 years ago
sepgsql Fix expected output: the order of agg permission checks changed. 5 years ago
spi
sslinfo Use be_tls_* API for SSL information in sslinfo 5 years ago
start-scripts
tablefunc tablefunc: Reject negative number of tuples passed to normal_rand() 5 years ago
tcn
test_decoding Fix 'skip-empty-xacts' option in test_decoding for streaming mode. 5 years ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo Remove arbitrary restrictions on password length. 6 years ago
xml2
Makefile Add new 'old_snapshot' contrib module. 6 years ago
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.