diff options
author | Tom Lane | 2010-05-12 16:50:58 +0000 |
---|---|---|
committer | Tom Lane | 2010-05-12 16:50:58 +0000 |
commit | 44e55690fde08b725cf8e8fee5a402f26b3f6db7 (patch) | |
tree | 1be629269de66914747ef9fedc146a762a908057 | |
parent | 087b393dabc5309bfdcdfb57ee7bb91debcc6ed5 (diff) |
Hook pg_upgrade into the contrib makefile structure so it gets built
on the buildfarm.
-rw-r--r-- | contrib/Makefile | 3 | ||||
-rw-r--r-- | contrib/README | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 0b208851c16..c85a6526a01 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/Makefile,v 1.90 2009/11/18 21:57:56 tgl Exp $ +# $PostgreSQL: pgsql/contrib/Makefile,v 1.91 2010/05/12 16:50:58 tgl Exp $ subdir = contrib top_builddir = .. @@ -31,6 +31,7 @@ SUBDIRS = \ pg_standby \ pg_stat_statements \ pg_trgm \ + pg_upgrade \ pgbench \ pgcrypto \ pgrowlocks \ diff --git a/contrib/README b/contrib/README index ff35c08a700..a04c04346ed 100644 --- a/contrib/README +++ b/contrib/README @@ -129,6 +129,10 @@ pg_trgm - matching. by Oleg Bartunov <[email protected]> and Teodor Sigaev <[email protected]> +pg_upgrade - + Support for in-place upgrade between major releases of PostgreSQL + Bruce Momjian <[email protected]> and others + pgbench - TPC-B like benchmarking tool by Tatsuo Ishii <[email protected]> |