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 1eda3eb075 pg_surgery: Fix off-by-one bug with heap offset 2 days ago
..
adminpack tests: Rename conflicting role names 6 months ago
amcheck amcheck: Fix snapshot usage in bt_index_parent_check 5 months ago
auth_delay
auto_explain Fix EXPLAIN ANALYZE for async-capable nodes. 5 years ago
bloom Count contrib/bloom index scans in pgstat view. 2 years ago
bool_plperl
btree_gin btree_gin: Fix calculation of leftmost interval value. 3 years ago
btree_gist Replace pg_mblen() with bounds-checked versions. 4 months ago
citext CREATE INDEX: use the original userid for more ACL checks. 4 years ago
cube Add binary I/O capability for cube datatype. 5 years ago
dblink Avoid resource leaks when a dblink connection fails. 1 year ago
dict_int
dict_xsyn Replace pg_mblen() with bounds-checked versions. 4 months ago
earthdistance
file_fdw Fix bogus ctid requirement for dummy-root partitioned targets 5 months ago
fuzzystrmatch Ensure Soundex difference() function handles empty input sanely. 3 years ago
hstore hstore: Fix NULL pointer dereference with receive function 4 months ago
hstore_plperl Use palloc_array() in a few more places to avoid overflow 4 weeks ago
hstore_plpython Use palloc_array() in a few more places to avoid overflow 4 weeks ago
intagg
intarray Fix missed ReleaseVariableStats() in intarray's _int_matchsel(). 2 weeks ago
isn
jsonb_plperl
jsonb_plpython
lo Repair incorrect handling of AfterTriggerSharedData.ats_modifiedcols. 1 year ago
ltree Re-add regression tests for ltree and intarray 3 weeks ago
ltree_plpython
oid2name Add a copyright notice to perl files lacking one. 5 years ago
old_snapshot Initial pgindent and pgperltidy run for v14. 5 years ago
pageinspect Replace pg_mblen() with bounds-checked versions. 4 months ago
passwordcheck tests: Rename conflicting role names 6 months ago
pg_buffercache Add CHECK_FOR_INTERRUPTS in contrib/pg_buffercache functions. 10 months ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 1 year ago
pg_prewarm Fix privilege checks for pg_prewarm() on indexes. 8 months ago
pg_stat_statements Avoid memory leak on error while parsing pg_stat_statements dump file 2 months ago
pg_surgery pg_surgery: Fix off-by-one bug with heap offset 2 days ago
pg_trgm Code coverage for most pg_mblen* calls. 4 months ago
pg_visibility Restore smgrtruncate() prototype in back-branches. 1 year ago
pgcrypto pgcrypto: Tweak error message for incorrect session key length 4 months ago
pgrowlocks Adjust the order of the prechecks in pgrowlocks() 3 years ago
pgstattuple pgstattuple: Improve reports generated for indexes (hash, gist, btree) 8 months ago
postgres_fdw postgres_fdw: Fix handling of abort-cleanup-failed connections. 1 month ago
seg Replace last PushOverrideSearchPath() call with set_config_option(). 3 years ago
sepgsql Adjust sepgsql expected output for 681d9e462 et al. 3 years ago
spi refint: Remove plan cache. 2 days ago
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix re-distributing previously distributed invalidation messages during logical decoding. 12 months ago
tsm_system_rows
tsm_system_time
unaccent Replace pg_mblen() with bounds-checked versions. 4 months ago
uuid-ossp Reject bogus output from uuid_create(3). 4 years ago
vacuumlo Add a copyright notice to perl files lacking one. 5 years ago
xml2 xml2: Fix failure with xslt_process() under -fsanitize=undefined 3 months 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.