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
Andres Freund c75ebc657f bufmgr: Allow some buffer state modifications while holding header lock 2 months ago
..
amcheck Improve TAP tests by replacing ok() with better Test::More functions 2 months ago
auth_delay
auto_explain
basebackup_to_shell
basic_archive
bloom
bool_plperl
btree_gin
btree_gist
citext
cube
dblink Use CompactAttribute more often, when possible 2 months ago
dict_int
dict_xsyn
earthdistance
file_fdw Use CompactAttribute more often, when possible 2 months ago
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray
isn
jsonb_plperl
jsonb_plpython
lo
ltree Fix contrib/ltree's subpath() with negative offset. 2 months ago
ltree_plpython
oid2name
pageinspect Don't include access/htup_details.h in executor/tuptable.h 3 months ago
passwordcheck
pg_buffercache bufmgr: Allow some buffer state modifications while holding header lock 2 months ago
pg_freespacemap
pg_logicalinspect
pg_overexplain
pg_prewarm bufmgr: Allow some buffer state modifications while holding header lock 2 months ago
pg_stat_statements pg_stat_statements: Fix handling of duplicate constant locations 2 months ago
pg_surgery Fix some confusing uses of const 2 months ago
pg_trgm
pg_visibility Improve TAP tests by replacing ok() with better Test::More functions 2 months ago
pg_walinspect Use XLogRecPtrIsValid() in various places 2 months ago
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw postgres_fdw: Add more test coverage for EvalPlanQual testing. 2 months ago
seg
sepgsql Update expected output for contrib/sepgsql's regression tests. 2 months ago
spi
sslinfo
start-scripts
tablefunc
tcn Use stack allocated StringInfoDatas, where possible 2 months ago
test_decoding Add mem_exceeded_count column to pg_stat_replication_slots. 3 months ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2 Don't include access/htup_details.h in executor/tuptable.h 3 months 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.