diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-02-08 15:09:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-02-08 15:09:47 +0000 |
commit | 528779a2c6eff87abf1a067e459ad9e1e71f54bb (patch) | |
tree | b0f5f395ab7f30cccce359ba05f0feba8262f909 | |
parent | f8ebab901bd27d39e1f45445eae302db628ba8e3 (diff) | |
download | postgresql-528779a2c6eff87abf1a067e459ad9e1e71f54bb.tar.gz postgresql-528779a2c6eff87abf1a067e459ad9e1e71f54bb.zip |
Add /contrib/pg_standby:
pg_standby is a production-ready program that can be used to
create a Warm Standby server. Other configuration is required
as well, all of which is described in the main server manual.
Simon Riggs
-rw-r--r-- | contrib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 1787a1b7908..637ba237678 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/Makefile,v 1.70 2006/09/09 04:07:51 tgl Exp $ +# $PostgreSQL: pgsql/contrib/Makefile,v 1.71 2007/02/08 15:09:47 momjian Exp $ subdir = contrib top_builddir = .. @@ -21,6 +21,7 @@ WANTED_DIRS = \ oid2name \ pg_buffercache \ pg_freespacemap \ + pg_standby \ pg_trgm \ pgbench \ pgcrypto \ |