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
Masahiko Sawada 7cdfeee320 Add contrib/pg_logicalinspect. 11 months ago
..
amcheck Allow TAP tests to force checksums off when calling init() 11 months 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 Replace gratuitous memmove() with memcpy() 1 year ago
bool_plperl Update copyright for 2024 2 years ago
btree_gin Update copyright for 2024 2 years ago
btree_gist Add temporal FOREIGN KEY contraints 1 year ago
citext Add argument names to the regexp_XXX functions. 1 year ago
cube Include bison header files into implementation files 1 year ago
dblink Don't bother checking the result of SPI_connect[_ext] anymore. 1 year ago
dict_int Update copyright for 2024 2 years ago
dict_xsyn Update copyright for 2024 2 years ago
earthdistance Update copyright for 2024 2 years ago
file_fdw file_fdw: Add on_error and log_verbosity options to file_fdw. 12 months ago
fuzzystrmatch Update copyright for 2024 2 years ago
hstore Optimize escaping of JSON strings 1 year 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 Use new overflow-safe integer comparison functions. 2 years ago
isn Convert some extern variables to static 1 year ago
jsonb_plperl Update copyright for 2024 2 years ago
jsonb_plpython Update copyright for 2024 2 years ago
lo Update copyright for 2024 2 years ago
ltree Add hash support functions and hash opclass for contrib/ltree. 2 years ago
ltree_plpython Update copyright for 2024 2 years ago
oid2name Apply more quoting to GUC names in messages 1 year ago
pageinspect Fix contrib/pageinspect's test for sequences. 1 year ago
passwordcheck Update copyright for 2024 2 years ago
pg_buffercache Add pg_buffercache_evict() function for testing. 1 year ago
pg_freespacemap Update copyright for 2024 2 years ago
pg_logicalinspect Add contrib/pg_logicalinspect. 11 months ago
pg_prewarm Add block_range_read_stream_cb(), to deduplicate code. 1 year ago
pg_stat_statements pg_stat_statements: Add columns to track parallel worker activity 11 months ago
pg_surgery Error message capitalisation 2 years ago
pg_trgm Use new overflow-safe integer comparison functions. 2 years ago
pg_visibility Optimize pg_visibility with read streams. 1 year ago
pg_walinspect Assign error codes where missing for user-facing failures 1 year ago
pgcrypto Remove support for OpenSSL older than 1.1.0 1 year ago
pgrowlocks Update copyright for 2024 2 years ago
pgstattuple Reintroduce support for sequences in pgstattuple and pageinspect. 1 year ago
postgres_fdw Fix Y2038 issues with MyStartTime. 11 months ago
seg Use generateClonedIndexStmt to propagate CREATE INDEX to partitions. 11 months ago
sepgsql Revise GUC names quoting in messages again 1 year ago
spi Don't bother checking the result of SPI_connect[_ext] anymore. 1 year ago
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 2 years ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Don't bother checking the result of SPI_connect[_ext] anymore. 1 year ago
tcn Update copyright for 2024 2 years ago
test_decoding Stabilize the test added by commit 022564f60c. 11 months ago
tsm_system_rows Update copyright for 2024 2 years ago
tsm_system_time Update copyright for 2024 2 years ago
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 Apply more quoting to GUC names in messages 1 year ago
xml2 Neaten up our choices of SQLSTATEs for XML-related errors. 12 months ago
Makefile Add contrib/pg_logicalinspect. 11 months ago
README
contrib-global.mk
meson.build Add contrib/pg_logicalinspect. 11 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.