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
Thomas Munro 9f0602539d Remove some more "snapshot too old" vestiges. 3 years ago
..
adminpack
amcheck Remove some more "snapshot too old" vestiges. 3 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 Remove the "snapshot too old" feature. 3 years ago
bool_plperl
btree_gin
btree_gist Allow some exclusion constraints on partitions 3 years ago
citext Remove read-only server settings lc_collate and lc_ctype 3 years ago
cube Handle \v as a whitespace character in parsers 3 years ago
dblink Refactor some code related to wait events "BufferPin" and "Extension" 3 years ago
dict_int
dict_xsyn
earthdistance
file_fdw Re-allow FDWs and custom scan providers to replace joins with pseudoconstant quals. 3 years ago
fuzzystrmatch Ensure Soundex difference() function handles empty input sanely. 3 years ago
hstore Handle \v as a whitespace character in parsers 3 years ago
hstore_plperl
hstore_plpython In hstore_plpython, avoid crashing when return value isn't a mapping. 3 years ago
intagg
intarray Remove unnecessary pfree() in g_intbig_compress(). 3 years ago
isn
jsonb_plperl
jsonb_plpython
lo
ltree Pre-beta mechanical code beautification. 3 years ago
ltree_plpython
oid2name
pageinspect pageinspect: Fix gist_page_items() with included columns 3 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Refactor some code related to wait events "BufferPin" and "Extension" 3 years ago
pg_stat_statements Show names of DEALLOCATE as constants in pg_stat_statements 3 years ago
pg_surgery
pg_trgm
pg_visibility
pg_walinspect Pre-beta mechanical code beautification. 3 years ago
pgcrypto Improve const use in zlib-using code 3 years ago
pgrowlocks
pgstattuple
postgres_fdw postgres_fdw: Fix test for parameterized foreign scan. 3 years ago
seg Handle \v as a whitespace character in parsers 3 years ago
sepgsql Catalog not-null constraints 3 years ago
spi
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 3 years ago
start-scripts
tablefunc
tcn
test_decoding Catalog not-null constraints 3 years ago
tsm_system_rows
tsm_system_time
unaccent Fix regression tests of unaccent to work without UTF8 support 3 years ago
uuid-ossp
vacuumlo
xml2
Makefile Remove the "snapshot too old" feature. 3 years ago
README
contrib-global.mk
meson.build Remove the "snapshot too old" feature. 3 years ago

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.