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 28d3c2ddcf Fix another bug in parent page splitting during GiST index build. 2 years ago
..
adminpack
amcheck Remove some more "snapshot too old" vestiges. 2 years ago
auth_delay Fix copy-pasto in contrib/auth_delay/meson.build variable name. 3 years ago
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. 2 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. 2 years ago
fuzzystrmatch Add some const qualifiers 2 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 Fix another bug in parent page splitting during GiST index build. 2 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 Add pg_buffercache_usage_counts() to contrib/pg_buffercache. 3 years ago
pg_freespacemap
pg_prewarm Refactor some code related to wait events "BufferPin" and "Extension" 3 years ago
pg_stat_statements Fix tracking of temp table relation extensions as writes 2 years ago
pg_surgery
pg_trgm Update contrib/trgm_regexp's memory management. 3 years ago
pg_visibility
pg_walinspect Pre-beta mechanical code beautification. 3 years ago
pgcrypto Add some const qualifiers 2 years ago
pgrowlocks
pgstattuple
postgres_fdw postgres_fdw: Fix test for parameterized foreign scan. 2 years ago
seg Handle \v as a whitespace character in parsers 3 years ago
sepgsql Catalog not-null constraints 2 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 2 years ago
tsm_system_rows
tsm_system_time
unaccent unaccent: Fix allocation size for target characters on initial load 2 years ago
uuid-ossp
vacuumlo
xml2
Makefile Remove the "snapshot too old" feature. 2 years ago
README
contrib-global.mk
meson.build Remove the "snapshot too old" feature. 2 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.