OSDN Git Service

Links to CUBE, SEG contrib items
[pg-rex/syncrep.git] / contrib / README
1 The PostgreSQL contrib tree
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
4 This subtree contains tools, modules, and examples that are not
5 maintained as part of the core PostgreSQL system, mainly because
6 they only address a limited audience or are too inelegant to be
7 sold as an official feature.  That, however, does not preclude
8 their usefulness.
9
10 Each subdirectory contains a README file with information about the
11 module.  Most items can be built with `gmake all' and installed
12 with `gmake install' in the usual fashion, after you have run the
13 `configure' script in the top-level directory.  Some directories
14 supply new user-defined functions, operators, or types.  After you
15 have installed the files you need to register the new entities in
16 the database system by running the commands in the supplied .sql
17 file.  For example,
18
19         $ psql -d dbname -f module.sql
20
21 See the PostgreSQL documentation for more information about this
22 procedure.
23
24
25 Index:
26 ------
27
28 array -
29         Array iterator functions
30         by Massimo Dal Zotto <dz@cs.unitn.it>
31
32 cube -
33         Multidimensional-cube datatype (GiST indexing example)
34         by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>
35
36 earthdistance -
37         Operator for computing earth distance for two points
38         by Hal Snyder <hal@vailsys.com>
39
40 findoidjoins -
41         Finds the joins used by oid columns by examining the actual
42         values in the oid columns and row oids.
43         by Bruce Momjian <pgman@candle.pha.pa.us>
44
45 fulltextindex -
46         Full text indexing using triggers
47         by Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
48
49 isbn_issn -
50         PostgreSQL type extensions for ISBN (books) and ISSN (serials)
51         by Garrett A. Wollman <wollman@khavrinen.lcs.mit.edu>
52
53 linux -
54         Scripts for starting and stopping the PostgreSQL server on
55         a Linux system
56         by Thomas Lockhart <lockhart@alumni.caltech.edu>
57
58 lo -
59         Large Object maintenance
60         by Peter Mount <peter@retep.org.uk> 
61
62 mSQL-interface -
63         mSQL API translation library
64         by Aldrin Leal <aldrin@americasnet.com>
65
66 mac -
67         Support functions for MAC address types
68         by Lawrence E. Rosenman <ler@lerctr.org>
69
70 miscutil -
71         PostgreSQL assert checking and various utility functions
72         by Massimo Dal Zotto <dz@cs.unitn.it>
73
74 noupdate -
75         trigger to prevent updates on single columns
76
77 pg_dumplo -
78         Dump large objects
79         by Karel Zak <zakkr@zf.jcu.cz>
80
81 pgbench -
82         TPC-B like benchmarking tool
83         by Tatsuo Ishii <t-ishii@sra.co.jp>
84
85 pgcrypto -
86         Cryptographic hash functions
87         by Marko Kreen <marko@l-t.ee>
88
89 seg -
90         Confidence-interval datatype (GiST indexing example)
91         by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>
92
93 soundex -
94         Soundex function
95
96 spi -
97         Various trigger functions, examples for using SPI.
98
99 string -
100         C-like input/output conversion routines for strings
101         by Massimo Dal Zotto <dz@cs.unitn.it>
102
103 tips/apache_logging -
104         Getting Apache to log to PostgreSQL
105         by Terry Mackintosh <terry@terrym.com>
106
107 tools -
108         Assorted developer tools
109         by Massimo Dal Zotto <dz@cs.unitn.it>
110
111 unixdate -
112         Conversions from integer to datetime
113         by Thomas Lockhart <lockhart@alumni.caltech.edu>
114
115 userlock -
116         User locks
117         by Massimo Dal Zotto <dz@cs.unitn.it>
118
119 vacuumlo -
120         Remove orphaned large objects
121         by Peter T Mount <peter@retep.org.uk>