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
Tom Lane 6655d931c6 Handle default NULL insertion a little better. 1 year ago
..
adminpack
amcheck amcheck: Normalize index tuples containing uncompressed varlena 2 years ago
auth_delay
auto_explain Pre-beta mechanical code beautification. 3 years ago
basebackup_to_shell Pre-beta mechanical code beautification. 3 years ago
basic_archive Pre-beta mechanical code beautification. 3 years ago
bloom Count contrib/bloom index scans in pgstat view. 1 year ago
bool_plperl
btree_gin btree_gin: Fix calculation of leftmost interval value. 2 years ago
btree_gist
citext Skip citext_utf8 test on Windows. 2 years ago
cube
dblink rename "gss_accept_deleg" to "gss_accept_delegation". 3 years ago
dict_int
dict_xsyn
earthdistance contrib/earthdistance: Use SQL-standard function bodies. 1 year ago
file_fdw
fuzzystrmatch
hstore hstore: Tighten key/value parsing check for whitespaces 3 years ago
hstore_plperl
hstore_plpython
intagg
intarray Fix integer-overflow problem in intarray's g_int_decompress(). 2 years ago
isn
jsonb_plperl
jsonb_plpython
lo Repair incorrect handling of AfterTriggerSharedData.ats_modifiedcols. 1 year ago
ltree Pre-beta mechanical code beautification. 3 years ago
ltree_plpython
oid2name
old_snapshot
pageinspect Fix contrib/pageinspect's test for sequences. 1 year ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Pre-beta mechanical code beautification. 3 years ago
pg_stat_statements Add missing query ID reporting in extended query protocol 1 year ago
pg_surgery
pg_trgm Fix arrays comparison in CompareOpclassOptions() 1 year ago
pg_visibility Restore smgrtruncate() prototype in back-branches. 1 year ago
pg_walinspect Pre-beta mechanical code beautification. 3 years ago
pgcrypto pgcrypto: Fix check for buffer size 2 years ago
pgrowlocks Adjust the order of the prechecks in pgrowlocks() 2 years ago
pgstattuple Reintroduce support for sequences in pgstattuple and pageinspect. 1 year ago
postgres_fdw Handle default NULL insertion a little better. 1 year ago
seg seg: Add test "security" in meson.build 2 years ago
sepgsql meson: Fix sepgsql installation 1 year ago
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix invalidation of local pgstats references for entry reinitialization 1 year ago
tsm_system_rows
tsm_system_time
unaccent unaccent: Tweak value of PYTHON when building without Python support 2 years ago
uuid-ossp
vacuumlo
xml2 Replace usages of xmlXPathCompile() with xmlXPathCtxtCompile(). 1 year ago
Makefile
README
contrib-global.mk
meson.build

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.