From ca797f5c049db4adf27495adef1d91b71f0d481c Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 21 May 2018 14:54:24 -0400 Subject: [PATCH] doc: Use = after long options in documentation It's good for consistency and makes the examples easier to read. --- doc/src/sgml/logicaldecoding.sgml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/logicaldecoding.sgml b/doc/src/sgml/logicaldecoding.sgml index b29cfe6fb4..8db968641e 100644 --- a/doc/src/sgml/logicaldecoding.sgml +++ b/doc/src/sgml/logicaldecoding.sgml @@ -154,8 +154,8 @@ postgres=# SELECT pg_drop_replication_slot('regression_slot'); an additional connection. -$ pg_recvlogical -d postgres --slot test --create-slot -$ pg_recvlogical -d postgres --slot test --start -f - +$ pg_recvlogical -d postgres --slot=test --create-slot +$ pg_recvlogical -d postgres --slot=test --start -f - ControlZ $ psql -d postgres -c "INSERT INTO data(data) VALUES('4');" $ fg @@ -163,7 +163,7 @@ BEGIN 693 table public.data: INSERT: id[integer]:4 data[text]:'4' COMMIT 693 ControlC -$ pg_recvlogical -d postgres --slot test --drop-slot +$ pg_recvlogical -d postgres --slot=test --drop-slot -- 2.40.0