From 8d985560fc1de6197323d4397d2a2bf762657463 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 23 Sep 2022 21:16:08 -0400 Subject: [PATCH] Improve terminology Use "prepared transaction" instead of "two-phrase transaction". This is in line with c5d67881d343a507269bde124a49df19e0296157. --- doc/src/sgml/ref/pg_recvlogical.sgml | 4 ++-- src/bin/pg_basebackup/pg_recvlogical.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/pg_recvlogical.sgml b/doc/src/sgml/ref/pg_recvlogical.sgml index 1a882254095..7c01a5c3ba3 100644 --- a/doc/src/sgml/ref/pg_recvlogical.sgml +++ b/doc/src/sgml/ref/pg_recvlogical.sgml @@ -68,7 +68,7 @@ PostgreSQL documentation The can be specified with - to enable two-phase decoding. + to enable decoding of prepared transactions. @@ -266,7 +266,7 @@ PostgreSQL documentation - Enables two-phase decoding. This option should only be specified with + Enables decoding of prepared transactions. This option may only be specified with diff --git a/src/bin/pg_basebackup/pg_recvlogical.c b/src/bin/pg_basebackup/pg_recvlogical.c index b59ff23f612..02b8e272c37 100644 --- a/src/bin/pg_basebackup/pg_recvlogical.c +++ b/src/bin/pg_basebackup/pg_recvlogical.c @@ -96,7 +96,7 @@ usage(void) printf(_(" -s, --status-interval=SECS\n" " time between status packets sent to server (default: %d)\n"), (standby_message_timeout / 1000)); printf(_(" -S, --slot=SLOTNAME name of the logical replication slot\n")); - printf(_(" -t, --two-phase enable two-phase decoding when creating a slot\n")); + printf(_(" -t, --two-phase enable decoding of prepared transactions when creating a slot\n")); printf(_(" -v, --verbose output verbose messages\n")); printf(_(" -V, --version output version information, then exit\n")); printf(_(" -?, --help show this help, then exit\n")); -- 2.39.5