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
Michael Paquier a5171b8800 Fix compilation warnings with libselinux 3.1 in contrib/sepgsql/ 3 years ago
..
adminpack Fix potentially-unportable code in contrib/adminpack. 7 years ago
auth_delay Limit values of archive_timeout, post_auth_delay, auth_delay.milliseconds. 13 years ago
auto_explain Allow auto_explain.log_min_duration to go up to INT_MAX. 7 years ago
btree_gin Make contrib regression tests safe for Danish locale. 9 years ago
btree_gist Fix assorted issues in convert_to_scalar(). 7 years ago
chkpass Fix volatility markings of some contrib I/O functions. 11 years ago
citext Make contrib regression tests safe for Danish locale. 9 years ago
cube Enforce cube dimension limit in all cube construction functions 7 years ago
dblink Prevent accidental linking of system-supplied copies of libpq.so etc. 7 years ago
dict_int Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
dict_xsyn Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
dummy_seclabel Update copyrights for 2013 13 years ago
earthdistance Fix earthdistance test suite function name typo. 7 years ago
file_fdw Fix contrib/file_fdw's expected file 10 years ago
fuzzystrmatch Add missing va_end() call to a early exit in dmetaphone.c's StringAt(). 11 years ago
hstore Suppress more variable-set-but-not-used warnings from clang 15. 3 years ago
intagg Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
intarray Fix -e option in contrib/intarray/bench/bench.pl. 9 years ago
isn Fix typos in comments. 9 years ago
lo Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
ltree Suppress more variable-set-but-not-used warnings from clang 15. 3 years ago
oid2name Prevent accidental linking of system-supplied copies of libpq.so etc. 7 years ago
pageinspect Remove unused macros. 9 years ago
passwordcheck Update copyrights for 2013 13 years ago
pg_archivecleanup Fix new warnings from GCC 7 8 years ago
pg_buffercache Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
pg_freespacemap Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
pg_standby Fix new warnings from GCC 7 8 years ago
pg_stat_statements Avoid unlikely data-loss scenarios due to rename() without fsync. 9 years ago
pg_test_fsync Avoid depending on non-POSIX behavior of fcntl(2). 8 years ago
pg_test_timing Correctly handle test durations of more than 2147s in pg_test_timing. 11 years ago
pg_trgm Further fix pg_trgm's extraction of trigrams from regular expressions. 8 years ago
pg_upgrade Make pg_upgrade's test.sh less chatty. 4 years ago
pg_upgrade_support Update copyrights for 2013 13 years ago
pg_xlogdump Use snprintf not sprintf in pg_waldump's timestamptz_to_str. 7 years ago
pgbench Fix compiler warning 4 years ago
pgcrypto Suppress -Warray-parameter warnings in pgcrypto/sha2.c. 4 years ago
pgrowlocks Fix handling of multixacts predating pg_upgrade 9 years ago
pgstattuple Remove unused macros. 9 years ago
postgres_fdw Prevent accidental linking of system-supplied copies of libpq.so etc. 7 years ago
seg Fix typos in comments. 9 years ago
sepgsql Fix compilation warnings with libselinux 3.1 in contrib/sepgsql/ 3 years ago
spi Prevent accidental linking of system-supplied copies of libpq.so etc. 7 years ago
sslinfo Fix error message wording in previous sslinfo commit 10 years ago
start-scripts Provide modern examples of how to auto-start Postgres on macOS. 8 years ago
tablefunc Handle unexpected query results, especially NULLs, safely in connectby(). 11 years ago
tcn Remove tabs after spaces in C comments 11 years ago
test_parser Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
tsearch2 Fix typos in comments. 9 years ago
unaccent Make contrib/unaccent's unaccent() function work when not in search path. 7 years ago
uuid-ossp Fix typos in some error messages thrown by extension scripts when fed to psql. 11 years ago
vacuumlo Prevent accidental linking of system-supplied copies of libpq.so etc. 7 years ago
worker_spi worker_spi: Call pgstat_report_stat. 9 years ago
xml2 Fix typos in comments. 9 years ago
Makefile contrib/Makefile also needs updated 13 years ago
README Update contrib/README 13 years ago
contrib-global.mk Remove cvs keywords from all files. 15 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 "gmake all" and "gmake
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.