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
Zsolt Parragi c7e7dc52a7 Xlog encryption bugfix: offset calculation was off on TLI change 1 month ago
..
amcheck Simplify check for if heap AM related extensions can be used 7 months ago
auth_delay
auto_explain
basebackup_to_shell
basic_archive
bloom Clean up newlines following left parentheses 7 months ago
bool_plperl
btree_gin
btree_gist Revert temporal primary keys and foreign keys 1 year ago
citext
cube
dblink
dict_int
dict_xsyn
earthdistance contrib/earthdistance: Use SQL-standard function bodies. 7 months ago
file_fdw
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray Fix GIN's shimTriConsistentFn to not corrupt its input. 4 months ago
isn
jsonb_plperl
jsonb_plpython
lo Repair incorrect handling of AfterTriggerSharedData.ats_modifiedcols. 7 months ago
ltree
ltree_plpython
oid2name PG-1235: Fix product name and version 9 months ago
pageinspect Be more wary of corrupt data in pageinspect's heap_page_items(). 4 months ago
passwordcheck
pg_buffercache
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 4 months ago
pg_prewarm Unify some error messages 1 year ago
pg_stat_statements Add missing query ID reporting in extended query protocol 1 year ago
pg_surgery Simplify check for if heap AM related extensions can be used 7 months ago
pg_tde Xlog encryption bugfix: offset calculation was off on TLI change 1 month ago
pg_trgm Fix arrays comparison in CompareOpclassOptions() 10 months ago
pg_visibility Restore smgrtruncate() prototype in back-branches. 7 months ago
pg_walinspect
pgcrypto
pgrowlocks Simplify check for if heap AM related extensions can be used 7 months ago
pgstattuple Simplify check for if heap AM related extensions can be used 7 months ago
postgres_fdw postgres_fdw: Remove redundant check in semijoin_target_ok() 4 months ago
seg Use generateClonedIndexStmt to propagate CREATE INDEX to partitions. 10 months ago
sepgsql meson: Fix sepgsql installation 7 months ago
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix xmin advancement during fast_forward decoding. 4 months ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo PG-1235: Fix product name and version 9 months ago
xml2 Replace usages of xmlXPathCompile() with xmlXPathCtxtCompile(). 1 year ago
Makefile Make pg_waldump read encrypted WAL (#20) 10 months ago
README
contrib-global.mk
meson.build Removed fsync_checker extension from patch as we do not want to 12 months 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.