Skip to content

Files

Latest commit

Mar 17, 2014
2bccced · Mar 17, 2014

History

History

contrib

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 7, 2014
Nov 18, 2012
Mar 4, 2014
Oct 12, 2011
May 29, 2013
Feb 17, 2014
Feb 27, 2014
Oct 31, 2013
Jan 7, 2014
Jan 7, 2014
Jan 7, 2014
Jan 7, 2014
Oct 12, 2011
Mar 4, 2014
Jan 7, 2014
Feb 21, 2014
Oct 12, 2011
Feb 17, 2014
Jan 13, 2014
Nov 24, 2013
Feb 17, 2014
Feb 15, 2014
Mar 3, 2014
Jan 7, 2014
Feb 15, 2014
Jan 27, 2014
Oct 12, 2011
Jan 7, 2014
Feb 17, 2014
Feb 23, 2014
Feb 12, 2014
Jul 1, 2013
Jan 13, 2014
Mar 17, 2014
Jan 7, 2014
Jan 7, 2014
Feb 28, 2014
Mar 17, 2014
Jul 22, 2013
Jan 22, 2014
Mar 7, 2014
Jul 29, 2013
Jan 7, 2014
Oct 13, 2013
Feb 23, 2014
Sep 4, 2013
Jan 7, 2014
Jan 7, 2014
Mar 12, 2014
Jan 7, 2014
Jan 16, 2014
Jan 7, 2014
Jan 7, 2014
Jan 7, 2014
Feb 15, 2014
Feb 1, 2014
Aug 30, 2012
Mar 3, 2014
Feb 12, 2014
Sep 20, 2010
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.