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 aeaaf520f4 Mark pageinspect's disk-accessing functions as parallel restricted. 3 years ago
..
adminpack
amcheck Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
auth_delay Clean up some inconsistencies with GUC declarations 3 years ago
auto_explain
basebackup_to_shell
basic_archive Fix calculation related to temporary WAL segment name in basic_archive 3 years ago
bloom If wait_for_catchup fails under has_wal_read_bug, skip balance of test. 3 years ago
bool_plperl
btree_gin Produce more-optimal plans for bitmap scans on boolean columns. 3 years ago
btree_gist
citext
cube
dblink Refactor aclcheck functions 3 years ago
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch Remove AssertArg and AssertState 3 years ago
hstore
hstore_plperl
hstore_plpython
intagg
intarray
isn
jsonb_plperl
jsonb_plpython
lo
ltree
ltree_plpython
oid2name
old_snapshot
pageinspect Mark pageinspect's disk-accessing functions as parallel restricted. 3 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Clean up some inconsistencies with GUC declarations 3 years ago
pg_stat_statements pg_stat_statements: fetch stmt location/length before it disappears. 3 years ago
pg_surgery Refactor ownercheck functions 3 years ago
pg_trgm Clean up some inconsistencies with GUC declarations 3 years ago
pg_visibility
pg_walinspect Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
pgcrypto Remove redundant memset call following palloc0 3 years ago
pgrowlocks Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years ago
pgstattuple
postgres_fdw Avoid making commutatively-duplicate clauses in EquivalenceClasses. 3 years ago
seg
sepgsql Clean up some inconsistencies with GUC declarations 3 years ago
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix assertion failures while processing NEW_CID record in logical decoding. 3 years ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2 Rename SetSingleFuncCall() to InitMaterializedSRF() 3 years 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.