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
Etsuro Fujita 8c7be86883 postgres_fdw: Move comments about elog level in (sub)abort cleanup. 4 years ago
..
adminpack Rename Default Roles to Predefined Roles 5 years ago
amcheck Add more $Test::Builder::Level in the TAP tests 4 years ago
auth_delay
auto_explain Unify PostgresNode's new() and get_new_node() methods 5 years ago
bloom Fix instability in contrib/bloom TAP tests. 4 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 Revert use singular for -1 (commits 9ee7d533da and 5da9868ed9 5 years ago
dict_int
dict_xsyn
earthdistance
file_fdw Rename Default Roles to Predefined Roles 5 years ago
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Clean up some code using "(expr) ? true : false" 5 years ago
isn
jsonb_plperl
jsonb_plpython
lo
ltree Clean up more code using "(expr) ? true : false" 4 years ago
ltree_plpython
oid2name Add a copyright notice to perl files lacking one. 5 years ago
old_snapshot Initial pgindent and pgperltidy run for v14. 5 years ago
pageinspect pageinspect: Make page deletion elog less chatty. 5 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Replace RelationOpenSmgr() with RelationGetSmgr(). 5 years ago
pg_stat_statements pg_stat_statements: Add some tests for older versions still usable 4 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 Rename Default Roles to Predefined Roles 5 years ago
pgstattuple Improve error messages about mismatching relkind 5 years ago
postgres_fdw postgres_fdw: Move comments about elog level in (sub)abort cleanup. 4 years ago
seg Stabilize contrib/seg regression test. 5 years ago
sepgsql Clean up some code using "(expr) ? true : false" 5 years ago
spi
sslinfo
start-scripts
tablefunc Fix typos and grammar in code comments 4 years ago
tcn
test_decoding Add more $Test::Builder::Level in the TAP tests 4 years ago
tsm_system_rows
tsm_system_time
unaccent Update Unicode data to CLDR 39 5 years ago
uuid-ossp
vacuumlo Add a copyright notice to perl files lacking one. 5 years ago
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.