|
2 | 2 | The PostgreSQL contrib tree |
3 | 3 | --------------------------- |
4 | 4 |
|
5 | | -This subtree contains tools, modules, and examples that are not |
6 | | -maintained as part of the core PostgreSQL system, mainly because |
7 | | -they only address a limited audience or are too inelegant to be |
8 | | -sold as an official feature. That, however, does not preclude |
9 | | -their usefulness. |
| 5 | +This subtree contains utilities, conversion tools, and features that are |
| 6 | +not part of the core PostgreSQL system, mainly because they address a |
| 7 | +limited audience or are too experimental to be part of the main source |
| 8 | +tree. This does not preclude their usefulness. |
10 | 9 |
|
11 | 10 | Each subdirectory contains a README file with information about the |
12 | | -module. Most items can be built with `gmake all' and installed |
13 | | -with `gmake install' in the usual fashion, after you have run the |
14 | | -`configure' script in the top-level directory. Some directories |
15 | | -supply new user-defined functions, operators, or types. After you |
16 | | -have installed the files you need to register the new entities in |
17 | | -the database system by running the commands in the supplied .sql |
18 | | -file. For example, |
| 11 | +module. Most items can be built with `gmake all' and installed with |
| 12 | +`gmake install' in the usual fashion, after you have run the `configure' |
| 13 | +script in the top-level directory. Some directories supply new |
| 14 | +user-defined functions, operators, or types. After you have installed |
| 15 | +the files you need to register the new entities in the database system |
| 16 | +by running the commands in the supplied .sql file. For example, |
19 | 17 |
|
20 | 18 | $ psql -d dbname -f module.sql |
21 | 19 |
|
|