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
Bruce Momjian baf6c8d21d Please, apply patch for contrib/ltree to current CVS and 7.3.2 23 years ago
..
adddepend Fix script name in README. 23 years ago
array Just some fixups to a couple contrib directories I was trying out. 23 years ago
btree_gist Regression output didn't get updated to match recent commit. 23 years ago
chkpass Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls. 23 years ago
cube The attached patch provides cube with 4 functions for building cubes 23 years ago
dbase This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
dblink Fix inappropriate quoting in dblink. From Joe Conway. 23 years ago
dbmirror The attatched patch fixes a memory error with contrib/dbmirror/pending.c 23 years ago
dbsize pgindent run. 23 years ago
earthdistance The attached patches change earthdistance to use the new cube functions 23 years ago
findoidjoins Update /contrib for "autocommit TO 'on'". 23 years ago
fulltextindex This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
fuzzystrmatch This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
intagg Just some fixups to a couple contrib directories I was trying out. 23 years ago
intarray This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
ipc_check start of an admin tool for FreeBSD to help configure shared memory for 25 years ago
isbn_issn Remove extraneous semicolons after routine bodies. These don't bother 23 years ago
lo Add casts between lo and oid. 23 years ago
ltree Please, apply patch for contrib/ltree to current CVS and 7.3.2 23 years ago
mSQL-interface pgindent run. 23 years ago
mac Move contrib/odbc/odbc.sql together with odbc driver, remove old files; 25 years ago
miscutil Update /contrib for "autocommit TO 'on'". 23 years ago
mysql Upgrade to my2pg 1.9 23 years ago
noupdate Update /contrib for "autocommit TO 'on'". 23 years ago
oid2name This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
oracle Upgrade to even newer ora2pg 2.0. 23 years ago
pg_autovacuum Rename README in autovacuum code to match Makefile. 23 years ago
pg_dumplo Add missing #include <getopt.h>. 23 years ago
pg_logger New pgindent run with fixes suggested by Tom. Patch manually reviewed, 24 years ago
pg_upgrade Make pg_resetxlog options parsing more standard and prepare messages for 23 years ago
pgbench Add note that scaling factor should be >= # of clients. 23 years ago
pgcrypto This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
pgstattuple Update /contrib for "autocommit TO 'on'". 23 years ago
reindexdb Use sed rather than perl for reindexdb. 23 years ago
rserv Fix a dozen or so places that were passing unpredictable data strings 23 years ago
rtree_gist SET autocommit no longer needed in /contrib because pg_regress.sh does 23 years ago
seg Tweak bison build rules so that we get the same error messages from 23 years ago
spi This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
start-scripts I've simplified the Darwin/Mac OS X startup script I submitted earlier 23 years ago
string This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
tablefunc This patch implements holdable cursors, following the proposal 23 years ago
tips Remove the last traces of datatypes datetime and timespan. 23 years ago
tools Another round of those unportable config/build changes :-/ 25 years ago
tsearch This patch fixes a bunch of spelling mistakes in comments throughout the 23 years ago
userlock Update /contrib for "autocommit TO 'on'". 23 years ago
vacuumlo Following patch avoids removing oids in the temporary table from the 23 years ago
xml Some time ago John Gray <jgray@azuli.co.uk> and myself worked out and 23 years ago
Makefile I have updated my pg_autovacuum program (formerly pg_avd, the name 23 years ago
README I have updated my pg_autovacuum program (formerly pg_avd, the name 23 years ago
contrib-global.mk Make it possible to run 'make installcheck' in contrib when building 23 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.

Each subdirectory contains a README file with information about the
module. Most items can be built with `gmake all' and installed with
`gmake install' in the usual fashion, after you have run the `configure'
script in the top-level directory. Some directories supply new
user-defined functions, operators, or types. After you have installed
the files you need to register the new entities in the database system
by running the commands in the supplied .sql file. For example,

$ psql -d dbname -f module.sql

See the PostgreSQL documentation for more information about this
procedure.


Index:
------

adddepend -
Add object dependency information to pre-7.3 objects.
by Rod Taylor <rbt@rbt.ca>

array -
Array iterator functions
by Massimo Dal Zotto <dz@cs.unitn.it>

btree_gist -
Support for emulating BTREE indexing in GiST
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@stack.net>

chkpass -
An auto-encrypted password datatype
by D'Arcy J.M. Cain <darcy@druid.net>

cube -
Multidimensional-cube datatype (GiST indexing example)
by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>

dbase -
Converts from dbase/xbase to PostgreSQL
by Maarten.Boekhold <Maarten.Boekhold@reuters.com>,
Frank Koormann <fkoorman@usf.uni-osnabrueck.de>,
Ivan Baldo <lubaldo@adinet.com.uy>

dblink -
Allows remote query execution
by Joe Conway <mail@joeconway.com>

dbmirror -
Replication server
by Steven Singer <ssinger@navtechinc.com>

dbsize -
Reports database and table disk space
by Peter Eisentraut <peter_e@gmx.net>

earthdistance -
Operator for computing earth distance for two points
by Hal Snyder <hal@vailsys.com>

findoidjoins -
Finds the joins used by oid columns by examining the actual
values in the oid columns and row oids.
by Bruce Momjian <pgman@candle.pha.pa.us>

fulltextindex -
Full text indexing using triggers
by Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>

fuzzystrmatch -
Levenshtein, metaphone, and soundex fuzzy string matching
by Joe Conway <mail@joeconway.com>, Joel Burton <jburton@scw.org>

intagg -
Integer aggregator
by mlw <markw@mohawksoft.com>

intarray -
Index support for arrays of int4, using GiST
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov <oleg@sai.msu.su>

ipc_check -
Simple test script to help in configuring IPC.
FreeBSD only, for now.

isbn_issn -
PostgreSQL type extensions for ISBN (books) and ISSN (serials)
by Garrett A. Wollman <wollman@khavrinen.lcs.mit.edu>

lo -
Large Object maintenance
by Peter Mount <peter@retep.org.uk>

ltree -
Tree-like data structures
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov <oleg@sai.msu.su>

mSQL-interface -
mSQL API translation library
by Aldrin Leal <aldrin@americasnet.com>

mac -
Support functions for MAC address types
by Lawrence E. Rosenman <ler@lerctr.org>

miscutil -
PostgreSQL assert checking and various utility functions
by Massimo Dal Zotto <dz@cs.unitn.it>

mysql -
Utility to convert MySQL schema dumps to SQL92 and PostgreSQL
by Thomas Lockhart <lockhart@alumni.caltech.edu>
Max Rudensky <fonin@ziet.zhitomir.ua>
Valentine Danilchuk <valdan@ziet.zhitomir.ua>

noupdate -
Trigger to prevent updates on single columns

oid2name -
Maps numeric files to table names
by B Palmer <bpalmer@crimelabs.net>

oracle -
Converts Oracle database schema to PostgreSQL
by Gilles Darold <gilles@darold.net>

pg_autovacuum -
Automatically performs vacuum
by Matthew T. O'Connor <matthew@zeut.net>

pg_dumplo -
Dump large objects
by Karel Zak <zakkr@zf.jcu.cz>

pg_logger -
Stdin-to-syslog gateway for PostgreSQL
by Nathan Myers <ncm@nospam.cantrip.org>

pg_upgrade -
Upgrade from previous PostgreSQL version without pg_dump/reload
by Bruce Momjian <pgman@candle.pha.pa.us>

pgbench -
TPC-B like benchmarking tool
by Tatsuo Ishii <t-ishii@sra.co.jp>

pgcrypto -
Cryptographic functions
by Marko Kreen <marko@l-t.ee>

reindexdb -
Reindexes a database
by Shaun Thomas <sthomas@townnews.com>

pgstattuple -
A function returns the percentage of "dead" tuples in a table
by Tatsuo Ishii <t-ishii@sra.co.jp>

rserv -
Replication server
by Vadim B. Mikheev <vadim4o@email.com>

rtree_gist -
Support for emulating RTREE indexing in GiST
by Oleg Bartunov <oleg@sai.msu.su> and Teodor Sigaev <teodor@stack.net>

seg -
Confidence-interval datatype (GiST indexing example)
by Gene Selkov, Jr. <selkovjr@mcs.anl.gov>

spi -
Various trigger functions, examples for using SPI.

start-scripts -
Scripts for starting the server at boot time.

string -
C-like input/output conversion routines for strings
by Massimo Dal Zotto <dz@cs.unitn.it>

tablefunc -
Examples of functions returning tables
by Joe Conway <mail@joeconway.com>

tips/apache_logging -
Getting Apache to log to PostgreSQL
by Terry Mackintosh <terry@terrym.com>

tools -
Assorted developer tools
by Massimo Dal Zotto <dz@cs.unitn.it>

tsearch -
Full-text-index support using GiST
by Teodor Sigaev <teodor@stack.net> and Oleg Bartunov
<oleg@sai.msu.su>.

userlock -
User locks
by Massimo Dal Zotto <dz@cs.unitn.it>

vacuumlo -
Remove orphaned large objects
by Peter T Mount <peter@retep.org.uk>

xml -
Storing XML in PostgreSQL
by John Gray <jgray@azuli.co.uk>