1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Improve terminology

Use "prepared transaction" instead of "two-phrase transaction".  This
is in line with 0e60a50e0bf158bead247731e00cee95bcf64daf.
This commit is contained in:
Peter Eisentraut 2022-09-23 21:16:08 -04:00
parent 5f1048881d
commit 6d6e136872
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ PostgreSQL documentation
<para> <para>
The <option>--two-phase</option> can be specified with The <option>--two-phase</option> can be specified with
<option>--create-slot</option> to enable two-phase decoding. <option>--create-slot</option> to enable decoding of prepared transactions.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -273,7 +273,7 @@ PostgreSQL documentation
<term><option>--two-phase</option></term> <term><option>--two-phase</option></term>
<listitem> <listitem>
<para> <para>
Enables two-phase decoding. This option should only be specified with Enables decoding of prepared transactions. This option may only be specified with
<option>--create-slot</option> <option>--create-slot</option>
</para> </para>
</listitem> </listitem>

View File

@ -94,7 +94,7 @@ usage(void)
printf(_(" -s, --status-interval=SECS\n" printf(_(" -s, --status-interval=SECS\n"
" time between status packets sent to server (default: %d)\n"), (standby_message_timeout / 1000)); " 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(_(" -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, --verbose output verbose messages\n"));
printf(_(" -V, --version output version information, then exit\n")); printf(_(" -V, --version output version information, then exit\n"));
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));