On Wed, Jan 14, 2015 at 6:43 PM, Heikki Linnakangas
<hlinnakan...@vmware.com> wrote:
> Here is a new version. There are now a fair amount of code changes compared
> to the version on github, like the logging and progress information, and a
> lot of comment changes. I also improved the documentation.

Perhaps this could a direct link to the page of pg_rewind with  <xref
linkend="app-pgrewind">?
-    possibly new, system. Once complete, the primary and standby can be
+    possibly new, system. The <application>pg_rewind</> utility can be
+    used to speed up this process on large clusters.
+    Once complete, the primary and standby can be

Missing a dot a the end of the phrase of this paragraph:
+        <para>
+          This option specifies the target data directory that is synchronized
+          with the source. The target server must shut down cleanly before
+          running <application>pg_rewind</application>
+        </para>

Compilation of pg_rewind on MSVC is not done. It is still listed as a
contrib/ in Mkvcbuild.pm.

The compilation of pg_xlogdump fails because inclusion of
dbcommands_xlog.h is missing in rmgrdesc.c (patch attached).

src/bin/Makefile has not been updated to compile pg_rewind.
-- 
Michael
diff --git a/contrib/pg_xlogdump/rmgrdesc.c b/contrib/pg_xlogdump/rmgrdesc.c
index 180818d..deb1b8f 100644
--- a/contrib/pg_xlogdump/rmgrdesc.c
+++ b/contrib/pg_xlogdump/rmgrdesc.c
@@ -23,6 +23,7 @@
 #include "access/xlog_internal.h"
 #include "catalog/storage_xlog.h"
 #include "commands/dbcommands.h"
+#include "commands/dbcommands_xlog.h"
 #include "commands/sequence.h"
 #include "commands/tablespace.h"
 #include "rmgrdesc.h"
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to