psql: Add missing punctuation in help output
[pgsql.git] / contrib / README
blob5eaeb2451f29877e986f4683c57dd70edde942d5
1 The PostgreSQL contrib tree
2 ---------------------------
4 This subtree contains porting tools, analysis utilities, and plug-in
5 features that are not part of the core PostgreSQL system, mainly
6 because they address a limited audience or are too experimental to be
7 part of the main source tree.  This does not preclude their
8 usefulness.
10 User documentation for each module appears in the main SGML
11 documentation.
13 When building from the source distribution, these modules are not
14 built automatically, unless you build the "world" target.  You can
15 also build and install them all by running "make all" and "make
16 install" in this directory; or to build and install just one selected
17 module, do the same in that module's subdirectory.
19 Some directories supply new user-defined functions, operators, or
20 types.  To make use of one of these modules, after you have installed
21 the code you need to register the new SQL objects in the database
22 system by executing a CREATE EXTENSION command.  In a fresh database,
23 you can simply do
25     CREATE EXTENSION module_name;
27 See the PostgreSQL documentation for more information about this
28 procedure.