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 3534fa2233 Refactor code building relation options 6 years ago
..
adminpack Update copyright for 2019 7 years ago
amcheck amcheck: Skip unlogged relations during recovery. 6 years ago
auth_delay Update copyright for 2019 7 years ago
auto_explain PG_FINALLY 6 years ago
bloom Refactor code building relation options 6 years ago
btree_gin Make the order of the header file includes consistent in contrib modules. 6 years ago
btree_gist Make the order of the header file includes consistent in contrib modules. 6 years ago
citext Fix typos in various places 6 years ago
cube Make the order of the header file includes consistent in contrib modules. 6 years ago
dblink PG_FINALLY 6 years ago
dict_int Update copyright for 2019 7 years ago
dict_xsyn Update copyright for 2019 7 years ago
earthdistance Fix earthdistance test suite function name typo. 7 years ago
file_fdw Represent Lists as expansible arrays, not chains of cons-cells. 6 years ago
fuzzystrmatch Fix inconsistencies and typos in the tree, take 10 6 years ago
hstore Make the order of the header file includes consistent in contrib modules. 6 years ago
hstore_plperl Clean up PL/Perl's handling of the _() macro. 6 years ago
hstore_plpython PG_FINALLY 6 years ago
intagg Schema-qualify some references to regprocedure. 9 years ago
intarray Make the order of the header file includes consistent in contrib modules. 6 years ago
isn Make the order of the header file includes consistent in contrib modules. 6 years ago
jsonb_plperl Make the order of the header file includes consistent in contrib modules. 6 years ago
jsonb_plpython PG_FINALLY 6 years ago
lo lo: Add test suite 8 years ago
ltree Make the order of the header file includes consistent in contrib modules. 6 years ago
ltree_plpython Make the order of the header file includes consistent in contrib modules. 6 years ago
oid2name Make the order of the header file includes consistent in contrib modules. 6 years ago
pageinspect Make the order of the header file includes consistent in contrib modules. 6 years ago
passwordcheck Make the order of the header file includes consistent in contrib modules. 6 years ago
pg_buffercache Remove WITH OIDS support, change oid catalog column visibility. 7 years ago
pg_freespacemap Replace heapam.h includes with {table, relation}.h where applicable. 7 years ago
pg_prewarm Fix more typos and inconsistencies in the tree 6 years ago
pg_standby Make the order of the header file includes consistent in contrib modules. 6 years ago
pg_stat_statements PG_FINALLY 6 years ago
pg_trgm PG_FINALLY 6 years ago
pg_visibility Speedup truncations of relation forks. 6 years ago
pgcrypto Fix typos in the code 6 years ago
pgrowlocks Only allow heap in a number of contrib modules. 6 years ago
pgstattuple Make the order of the header file includes consistent in contrib modules. 6 years ago
postgres_fdw PG_FINALLY 6 years ago
seg Fix PG_GETARG_SEG_P() definition. 6 years ago
sepgsql PG_FINALLY 6 years ago
spi Make the order of the header file includes consistent in contrib modules. 6 years ago
sslinfo Phase 3 of pgindent updates. 8 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc Make the order of the header file includes consistent in contrib modules. 6 years ago
tcn Make the order of the header file includes consistent in contrib modules. 6 years ago
test_decoding Message style fixes 6 years ago
tsm_system_rows Phase 2 pgindent run for v12. 6 years ago
tsm_system_time Phase 2 pgindent run for v12. 6 years ago
unaccent Update unicode.org URLs 6 years ago
uuid-ossp Update copyright for 2019 7 years ago
vacuumlo Make the order of the header file includes consistent in contrib modules. 6 years ago
xml2 Phase 2 pgindent run for v12. 6 years ago
Makefile Transforms for jsonb to PL/Perl 7 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

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.