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 5c571a34d0 postgres_fdw: Avoid "cursor can only scan forward" error. 1 year ago
..
amcheck Cleanup perl code from unused variables and routines 1 year ago
auth_delay
auto_explain
basebackup_to_shell
basic_archive Add built-in ERROR handling for archive callbacks. 1 year ago
bloom
bool_plperl
btree_gin
btree_gist Revert temporal primary keys and foreign keys 1 year ago
citext Skip citext_utf8 test on Windows. 1 year ago
cube
dblink Make libpqsrv_cancel's return const char *, not char * 1 year ago
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Use new overflow-safe integer comparison functions. 2 years ago
hstore_plperl
hstore_plpython
intagg
intarray Use new overflow-safe integer comparison functions. 2 years ago
isn Convert some extern variables to static 1 year ago
jsonb_plperl
jsonb_plpython
lo
ltree Add hash support functions and hash opclass for contrib/ltree. 2 years ago
ltree_plpython
oid2name
pageinspect Use TupleDescAttr macro consistently 1 year ago
passwordcheck
pg_buffercache Add pg_buffercache_evict() function for testing. 1 year ago
pg_freespacemap
pg_prewarm Unify some error messages 1 year ago
pg_stat_statements Propagate query IDs of utility statements in functions 1 year ago
pg_surgery
pg_trgm Use new overflow-safe integer comparison functions. 2 years ago
pg_visibility Avoid edge case in pg_visibility test with small shared_buffers 2 years ago
pg_walinspect Assign error codes where missing for user-facing failures 1 year ago
pgcrypto Remove support for HPPA (a/k/a PA-RISC) architecture. 1 year ago
pgrowlocks
pgstattuple
postgres_fdw postgres_fdw: Avoid "cursor can only scan forward" error. 1 year ago
seg
sepgsql Revise GUC names quoting in messages again 1 year ago
spi
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 2 years ago
start-scripts
tablefunc Make contrib/tablefunc crosstab() also check typmod 2 years ago
tcn
test_decoding Fix possibility of logical decoding partial transaction changes. 1 year ago
tsm_system_rows
tsm_system_time
unaccent Add simple codepoint redirections to unaccent.rules. 1 year ago
uuid-ossp Make the order of the header file includes consistent 2 years ago
vacuumlo
xml2 Fix incompatibilities with libxml2 >= 2.12.0. 2 years ago
Makefile Remove the adminpack contrib extension 2 years ago
README
contrib-global.mk
meson.build Remove the adminpack contrib extension 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.