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
Kai Wagner fe513b1fd1
Add to FAQ how to rotate internal encryption keys (#573)
1 week ago
..
amcheck Use Perl constructs instead of env variables for TDE_MODE 1 week ago
auth_delay Update copyright for 2024 2 years ago
auto_explain Add EXPLAIN (MEMORY) to report planner memory consumption 2 years ago
basebackup_to_shell Update copyright for 2024 2 years ago
basic_archive Add built-in ERROR handling for archive callbacks. 1 year ago
bloom Clean up newlines following left parentheses 7 months ago
bool_plperl Update copyright for 2024 2 years ago
btree_gin Update copyright for 2024 2 years ago
btree_gist Revert temporal primary keys and foreign keys 1 year ago
citext Skip citext_utf8 test on Windows. 1 year ago
cube Update copyright for 2024 2 years ago
dblink Make libpqsrv_cancel's return const char *, not char * 1 year ago
dict_int Update copyright for 2024 2 years ago
dict_xsyn Update copyright for 2024 2 years ago
earthdistance contrib/earthdistance: Use SQL-standard function bodies. 7 months ago
file_fdw Update copyright for 2024 2 years ago
fuzzystrmatch Update copyright for 2024 2 years ago
hstore Use new overflow-safe integer comparison functions. 2 years ago
hstore_plperl Update copyright for 2024 2 years ago
hstore_plpython Update copyright for 2024 2 years ago
intagg Update copyright for 2024 2 years ago
intarray Fix GIN's shimTriConsistentFn to not corrupt its input. 4 months ago
isn Update copyright for 2024 2 years ago
jsonb_plperl Update copyright for 2024 2 years ago
jsonb_plpython Update copyright for 2024 2 years ago
lo Repair incorrect handling of AfterTriggerSharedData.ats_modifiedcols. 7 months ago
ltree Add hash support functions and hash opclass for contrib/ltree. 1 year ago
ltree_plpython Update copyright for 2024 2 years ago
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 Update copyright for 2024 2 years ago
pg_buffercache Add pg_buffercache_evict() function for testing. 1 year ago
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 12 months ago
pg_surgery Simplify check for if heap AM related extensions can be used 7 months ago
pg_tde Add to FAQ how to rotate internal encryption keys (#573) 1 week ago
pg_trgm Fix arrays comparison in CompareOpclassOptions() 10 months ago
pg_visibility Restore smgrtruncate() prototype in back-branches. 7 months ago
pg_walinspect Update copyright for 2024 2 years ago
pgcrypto pgcrypto: Fix incorrect argument vs PG_GETARG*() mappings 2 years ago
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 Update copyright for 2024 2 years ago
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 1 year ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Make contrib/tablefunc crosstab() also check typmod 2 years ago
tcn Update copyright for 2024 2 years ago
test_decoding Fix xmin advancement during fast_forward decoding. 4 months ago
tsm_system_rows Update copyright for 2024 2 years ago
tsm_system_time Update copyright for 2024 2 years ago
unaccent Update copyright for 2024 2 years ago
uuid-ossp Make the order of the header file includes consistent 2 years ago
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.