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
Tom Lane 1fd3dd2048 Add bt_multi_page_stats() function to contrib/pageinspect. 3 years ago
..
adminpack Add copyright notices to meson files 3 years ago
amcheck Add copyright notices to meson files 3 years ago
auth_delay Add copyright notices to meson files 3 years ago
auto_explain Add copyright notices to meson files 3 years ago
basebackup_to_shell Add copyright notices to meson files 3 years ago
basic_archive Add copyright notices to meson files 3 years ago
bloom Add copyright notices to meson files 3 years ago
bool_plperl Add copyright notices to meson files 3 years ago
btree_gin Add copyright notices to meson files 3 years ago
btree_gist Add copyright notices to meson files 3 years ago
citext Add copyright notices to meson files 3 years ago
cube Add copyright notices to meson files 3 years ago
dblink Add copyright notices to meson files 3 years ago
dict_int Add copyright notices to meson files 3 years ago
dict_xsyn Add copyright notices to meson files 3 years ago
earthdistance Add copyright notices to meson files 3 years ago
file_fdw Add copyright notices to meson files 3 years ago
fuzzystrmatch Add copyright notices to meson files 3 years ago
hstore Convert hstore_in to report errors softly. 3 years ago
hstore_plperl Add copyright notices to meson files 3 years ago
hstore_plpython Add copyright notices to meson files 3 years ago
intagg Add copyright notices to meson files 3 years ago
intarray Convert contrib/intarray's bqarr_in() to report errors softly 3 years ago
isn Fix thinko in 720e0327bc 3 years ago
jsonb_plperl Add copyright notices to meson files 3 years ago
jsonb_plpython Add copyright notices to meson files 3 years ago
lo Add copyright notices to meson files 3 years ago
ltree Fix oversight in 7a05425d96 3 years ago
ltree_plpython Add copyright notices to meson files 3 years ago
oid2name Add copyright notices to meson files 3 years ago
old_snapshot Switch some system functions to use get_call_result_type() 3 years ago
pageinspect Add bt_multi_page_stats() function to contrib/pageinspect. 3 years ago
passwordcheck Add copyright notices to meson files 3 years ago
pg_buffercache Add copyright notices to meson files 3 years ago
pg_freespacemap Add copyright notices to meson files 3 years ago
pg_prewarm Add copyright notices to meson files 3 years ago
pg_stat_statements Add copyright notices to meson files 3 years ago
pg_surgery Add copyright notices to meson files 3 years ago
pg_trgm Add copyright notices to meson files 3 years ago
pg_visibility Switch some system functions to use get_call_result_type() 3 years ago
pg_walinspect Add copyright notices to meson files 3 years ago
pgcrypto Add copyright notices to meson files 3 years ago
pgrowlocks Add copyright notices to meson files 3 years ago
pgstattuple Add copyright notices to meson files 3 years ago
postgres_fdw Sample postgres_fdw tables remotely during ANALYZE 3 years ago
seg Convert contrib/seg's input function to report errors softly 3 years ago
sepgsql Add copyright notices to meson files 3 years ago
spi Add copyright notices to meson files 3 years ago
sslinfo Add copyright notices to meson files 3 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc Add copyright notices to meson files 3 years ago
tcn Add copyright notices to meson files 3 years ago
test_decoding Add copyright notices to meson files 3 years ago
tsm_system_rows Add copyright notices to meson files 3 years ago
tsm_system_time Add copyright notices to meson files 3 years ago
unaccent Add copyright notices to meson files 3 years ago
uuid-ossp Add copyright notices to meson files 3 years ago
vacuumlo Add copyright notices to meson files 3 years ago
xml2 Add copyright notices to meson files 3 years ago
Makefile Add contrib/pg_walinspect. 3 years ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 9 years ago
meson.build Add copyright notices to meson files 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.