doc: Use = after long options in documentation
authorPeter Eisentraut
Mon, 21 May 2018 18:54:24 +0000 (14:54 -0400)
committerPeter Eisentraut
Mon, 21 May 2018 18:54:24 +0000 (14:54 -0400)
It's good for consistency and makes the examples easier to read.

doc/src/sgml/logicaldecoding.sgml

index b29cfe6fb40ee993aecf6cd87f27525f783b1f5e..8db968641ee447cbc1fc643e37ed47c6cf0f37e9 100644 (file)
@@ -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