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
Michael Paquier 32cf7f7acc Improve performance of float overflow checks in btree_gist 5 years ago
..
adminpack
amcheck Unify PostgresNode's new() and get_new_node() methods 5 years ago
auth_delay
auto_explain Unify PostgresNode's new() and get_new_node() methods 5 years ago
bloom Unify PostgresNode's new() and get_new_node() methods 5 years ago
bool_plperl
btree_gin Fix failure of btree_gin indexscans with "char" type and </<= operators. 5 years ago
btree_gist Improve performance of float overflow checks in btree_gist 5 years ago
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Remove extraneous newlines added by perl copyright patch 5 years ago
isn
jsonb_plperl
jsonb_plpython
lo
ltree Adjust MSVC build scripts to parse Makefiles for defines 5 years ago
ltree_plpython
oid2name
old_snapshot Initial pgindent and pgperltidy run for v14. 5 years ago
pageinspect pageinspect: Improve page_header() for pages of 32kB 5 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Replace RelationOpenSmgr() with RelationGetSmgr(). 5 years ago
pg_stat_statements Harden pg_stat_statements tests against CLOBBER_CACHE_ALWAYS. 5 years ago
pg_surgery Improve error messages about mismatching relkind 5 years ago
pg_trgm Avoid determining regexp subexpression matches, when possible. 5 years ago
pg_visibility Replace RelationOpenSmgr() with RelationGetSmgr(). 5 years ago
pgcrypto Add alternative output for OpenSSL 3 without legacy loaded 5 years ago
pgrowlocks
pgstattuple Improve error messages about mismatching relkind 5 years ago
postgres_fdw postgres_fdw: Fix issues with generated columns in foreign tables. 5 years ago
seg Stabilize contrib/seg regression test. 5 years ago
sepgsql Fix regression test output of sepgsql 5 years ago
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Unify PostgresNode's new() and get_new_node() methods 5 years ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2
Makefile
README
contrib-global.mk

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.