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
Heikki Linnakangas 501cfd07da Fix resource leak when a FDW's ForeignAsyncRequest function fails 2 years ago
..
adminpack
amcheck amcheck: Distinguish interrupted page deletion from corruption. 2 years ago
auth_delay
auto_explain
basebackup_to_shell
basic_archive
bloom Use the buffer cache when initializing an unlogged index. 2 years ago
bool_plperl
btree_gin btree_gin: Fix calculation of leftmost interval value. 2 years ago
btree_gist
citext Remove read-only server settings lc_collate and lc_ctype 2 years ago
cube
dblink rename "gss_accept_deleg" to "gss_accept_delegation". 2 years ago
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore hstore: Tighten key/value parsing check for whitespaces 2 years ago
hstore_plperl
hstore_plpython
intagg
intarray Fix another bug in parent page splitting during GiST index build. 2 years ago
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
old_snapshot
pageinspect
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_stat_statements pg_stat_statements: Remove duplicated tests for SET statements 2 years ago
pg_surgery
pg_trgm
pg_visibility
pg_walinspect
pgcrypto Fix small overestimation of base64 encoding output length. 2 years ago
pgrowlocks Adjust the order of the prechecks in pgrowlocks() 2 years ago
pgstattuple Diagnose !indisvalid in more SQL functions. 2 years ago
postgres_fdw Fix resource leak when a FDW's ForeignAsyncRequest function fails 2 years ago
seg
sepgsql meson: Fix missing dependency from install-quiet to sepgsql.sql 2 years ago
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix the misuse of origin filter across multiple pg_logical_slot_get_changes() calls. 2 years 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
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.