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
Thomas Munro b6d8a60aba Restore pg_pread and friends. 3 years ago
..
adminpack meson: Add initial version of meson based build system 3 years ago
amcheck Harmonize parameter names in contrib code. 3 years ago
auth_delay meson: Add initial version of meson based build system 3 years ago
auto_explain meson: Add initial version of meson based build system 3 years ago
basebackup_to_shell meson: Add initial version of meson based build system 3 years ago
basic_archive meson: Add initial version of meson based build system 3 years ago
bloom meson: Add initial version of meson based build system 3 years ago
bool_plperl meson: Add initial version of meson based build system 3 years ago
btree_gin meson: Add initial version of meson based build system 3 years ago
btree_gist meson: Add initial version of meson based build system 3 years ago
citext meson: Add initial version of meson based build system 3 years ago
cube Harmonize parameter names in contrib code. 3 years ago
dblink Harmonize parameter names in contrib code. 3 years ago
dict_int meson: Add initial version of meson based build system 3 years ago
dict_xsyn meson: Add initial version of meson based build system 3 years ago
earthdistance meson: Add initial version of meson based build system 3 years ago
file_fdw meson: Add initial version of meson based build system 3 years ago
fuzzystrmatch Harmonize parameter names in contrib code. 3 years ago
hstore meson: Add initial version of meson based build system 3 years ago
hstore_plperl meson: Add initial version of meson based build system 3 years ago
hstore_plpython meson: Add initial version of meson based build system 3 years ago
intagg meson: Add initial version of meson based build system 3 years ago
intarray Convert *GetDatum() and DatumGet*() macros to inline functions 3 years ago
isn meson: Add initial version of meson based build system 3 years ago
jsonb_plperl meson: Add initial version of meson based build system 3 years ago
jsonb_plpython meson: Add initial version of meson based build system 3 years ago
lo meson: Add initial version of meson based build system 3 years ago
ltree Harmonize parameter names in contrib code. 3 years ago
ltree_plpython meson: Add initial version of meson based build system 3 years ago
oid2name Harmonize parameter names in contrib code. 3 years ago
old_snapshot meson: Add initial version of meson based build system 3 years ago
pageinspect meson: Add initial version of meson based build system 3 years ago
passwordcheck meson: Add initial version of meson based build system 3 years ago
pg_buffercache Revert 56-bit relfilenode change and follow-up commits. 3 years ago
pg_freespacemap meson: Add initial version of meson based build system 3 years ago
pg_prewarm Revert 56-bit relfilenode change and follow-up commits. 3 years ago
pg_stat_statements Restore pg_pread and friends. 3 years ago
pg_surgery meson: Add initial version of meson based build system 3 years ago
pg_trgm meson: Add initial version of meson based build system 3 years ago
pg_visibility meson: Add initial version of meson based build system 3 years ago
pg_walinspect Revert 56-bit relfilenode change and follow-up commits. 3 years ago
pgcrypto Harmonize parameter names in contrib code. 3 years ago
pgrowlocks meson: Add initial version of meson based build system 3 years ago
pgstattuple meson: Add initial version of meson based build system 3 years ago
postgres_fdw Harmonize parameter names in contrib code. 3 years ago
seg Harmonize parameter names in contrib code. 3 years ago
sepgsql meson: Add initial version of meson based build system 3 years ago
spi meson: Add initial version of meson based build system 3 years ago
sslinfo meson: Add initial version of meson based build system 3 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc Harmonize parameter names in contrib code. 3 years ago
tcn meson: Add initial version of meson based build system 3 years ago
test_decoding Harmonize parameter names in contrib code. 3 years ago
tsm_system_rows meson: Add initial version of meson based build system 3 years ago
tsm_system_time meson: Add initial version of meson based build system 3 years ago
unaccent meson: Add initial version of meson based build system 3 years ago
uuid-ossp meson: Add initial version of meson based build system 3 years ago
vacuumlo meson: Add initial version of meson based build system 3 years ago
xml2 meson: Add initial version of meson based build system 3 years ago
Makefile Add contrib/pg_walinspect. 3 years ago
README
contrib-global.mk
meson.build meson: Add initial version of meson based build system 3 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 "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.