Hi all,
pg_recvlogical is missing some "=" signs for a couple of option names where
double-dash is used, like this one:
--username user
should be that:
--username=user
Attached is a patch correcting that.
Regards,
--
Michael
diff --git a/doc/src/sgml/ref/pg_recvlogical.sgml b/doc/src/sgml/ref/pg_recvlogical.sgml
index f30b484..eaa5b5d 100644
--- a/doc/src/sgml/ref/pg_recvlogical.sgml
+++ b/doc/src/sgml/ref/pg_recvlogical.sgml
@@ -105,7 +105,7 @@ PostgreSQL documentation
<varlistentry>
<term><option>-U <replaceable>user</replaceable></option></term>
- <term><option>--username <replaceable>user</replaceable></option></term>
+ <term><option>--username=<replaceable>user</replaceable></option></term>
<listitem>
<para>
Username to connect as. Must have a suitable <literal>pg_hba.conf</literal>
@@ -117,7 +117,7 @@ PostgreSQL documentation
<varlistentry>
<term><option>-d <replaceable>database</replaceable></option></term>
- <term><option>--dbname <replaceable>database</replaceable></option></term>
+ <term><option>--dbname=<replaceable>database</replaceable></option></term>
<listitem>
<para>
The database to connect to in <literal>replication</literal> mode; see
@@ -130,7 +130,7 @@ PostgreSQL documentation
<varlistentry>
<term><option>-h <replaceable>hostname-or-ip</replaceable></option></term>
- <term><option>--host <replaceable>hostname-or-ip</replaceable></option></term>
+ <term><option>--host=<replaceable>hostname-or-ip</replaceable></option></term>
<listitem>
<para>
Host or socket to connect
@@ -143,7 +143,7 @@ PostgreSQL documentation
<varlistentry>
<term><option>-p <replaceable>port</replaceable></option></term>
- <term><option>--port <replaceable>port</replaceable></option></term>
+ <term><option>--port=<replaceable>port</replaceable></option></term>
<listitem>
<para>
Port number to connect to. See
--
Sent via pgsql-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers