and the attachment...
On 2016-11-22 14:55, Erik Rijkers wrote:
On 2016-11-20 19:06, Petr Jelinek wrote:
0004-Add-SUBSCRIPTION-catalog-and-DDL-v8.patch.gz
This patch contains 2 tabs which break the html build when using 'make
oldhtml':
$ ( cd
/var/data1/pg_stuff/pg_sandbox/pgsql.logical_replication/doc/src/sgml;
time make oldhtml )
make check-tabs
make[1]: Entering directory
`/var/data1/pg_stuff/pg_sandbox/pgsql.logical_replication/doc/src/sgml'
./ref/create_subscription.sgml: WITH (DISABLED);
Tabs appear in SGML/XML files
make[1]: *** [check-tabs] Error 1
make[1]: Leaving directory
`/var/data1/pg_stuff/pg_sandbox/pgsql.logical_replication/doc/src/sgml'
make: *** [oldhtml-stamp] Error 2
Very minor change, but it fixes that build.
Thanks,
Erik Rijkers
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
--- doc/src/sgml/ref/create_subscription.sgml.orig 2016-11-22 14:21:05.000000000 +0100
+++ doc/src/sgml/ref/create_subscription.sgml 2016-11-22 14:21:27.000000000 +0100
@@ -151,7 +151,7 @@
CREATE SUBSCRIPTION mysub
CONNECTION 'host=192.168.1.50 port=5432 user=foo dbname=foodb password=foopass'
PUBLICATION insert_only
- WITH (DISABLED);
+ WITH (DISABLED);
</programlisting>
</para>
--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers