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
Peter Eisentraut 493eb0da31 Replace most StaticAssertStmt() with StaticAssertDecl() 5 months ago
..
amcheck Remove useless casts in format arguments 5 months ago
auth_delay
auto_explain Allow resetting unknown custom GUCs with reserved prefixes. 9 months ago
basebackup_to_shell Use more palloc_object() and palloc_array() in contrib/ 5 months ago
basic_archive Remove translation marker from libpq-be-fe-helpers.h. 10 months ago
bloom Use more palloc_object() and palloc_array() in contrib/ 5 months ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 1 year ago
btree_gin Use more palloc_object() and palloc_array() in contrib/ 5 months ago
btree_gist Use more palloc_object() and palloc_array() in contrib/ 5 months ago
citext
cube Use more palloc_object() and palloc_array() in contrib/ 5 months ago
dblink Use CompactAttribute more often, when possible 6 months ago
dict_int Use more palloc_object() and palloc_array() in contrib/ 5 months ago
dict_xsyn Use more palloc_object() and palloc_array() in contrib/ 5 months ago
earthdistance
file_fdw Use more palloc_object() and palloc_array() in contrib/ 5 months ago
fuzzystrmatch Remove useless casting to same type 5 months ago
hstore Replace most StaticAssertStmt() with StaticAssertDecl() 5 months ago
hstore_plperl
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
intagg
intarray Use more palloc_object() and palloc_array() in contrib/ 5 months ago
isn Clean up int64-related format strings 5 months ago
jsonb_plperl Revise APIs for pushJsonbValue() and associated routines. 5 months ago
jsonb_plpython Revise APIs for pushJsonbValue() and associated routines. 5 months ago
lo
ltree Use more palloc_object() and palloc_array() in contrib/ 5 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
oid2name
pageinspect Clean up int64-related format strings 5 months ago
passwordcheck
pg_buffercache Use palloc_object() and palloc_array(), the last change 5 months ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 1 year ago
pg_logicalinspect
pg_overexplain Use more palloc_object() and palloc_array() in contrib/ 5 months ago
pg_prewarm bufmgr: Allow some buffer state modifications while holding header lock 6 months ago
pg_stat_statements pg_stat_statements: Fix handling of duplicate constant locations 6 months ago
pg_surgery Fix some confusing uses of const 6 months ago
pg_trgm Use palloc_object() and palloc_array(), the last change 5 months ago
pg_visibility Use more palloc_object() and palloc_array() in contrib/ 5 months ago
pg_walinspect Use more palloc_object() and palloc_array() in contrib/ 5 months ago
pgcrypto Use more palloc_object() and palloc_array() in contrib/ 5 months ago
pgrowlocks Add missing Datum conversions 9 months ago
pgstattuple pgstattuple: Improve reports generated for indexes (hash, gist, btree) 7 months ago
postgres_fdw Use palloc_object() and palloc_array(), the last change 5 months ago
seg Use more palloc_object() and palloc_array() in contrib/ 5 months ago
sepgsql Use more palloc_object() and palloc_array() in contrib/ 5 months ago
spi Use more palloc_object() and palloc_array() in contrib/ 5 months ago
sslinfo Use more palloc_object() and palloc_array() in contrib/ 5 months ago
start-scripts
tablefunc Use more palloc_object() and palloc_array() in contrib/ 5 months ago
tcn Use stack allocated StringInfoDatas, where possible 6 months ago
test_decoding Use more palloc_object() and palloc_array() in contrib/ 5 months ago
tsm_system_rows Use more palloc_object() and palloc_array() in contrib/ 5 months ago
tsm_system_time Use more palloc_object() and palloc_array() in contrib/ 5 months ago
unaccent Use more palloc_object() and palloc_array() in contrib/ 5 months ago
uuid-ossp
vacuumlo
xml2 Use more palloc_object() and palloc_array() in contrib/ 5 months ago
Makefile
README
contrib-global.mk
meson.build

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.