diff options
| author | Michael Paquier <michael@paquier.xyz> | 2022-08-19 10:00:23 +0900 |
|---|---|---|
| committer | Michael Paquier <michael@paquier.xyz> | 2022-08-19 10:00:23 +0900 |
| commit | 4afe79bd31e82b1b2d725c463a4aff2f85d8a3d0 (patch) | |
| tree | ffd1110c4ad5fcf0474719c53bf7478b249b2fce /doc/src/sgml/ref | |
| parent | 08c23f4204066aa86361eb6232d94284aa8dff00 (diff) | |
doc: Improve some markups and some wording around archiving modules
This commit adds or fixes used markups in a couple of places in the docs
(for <command>, <systemitem> and <literal>). While on it, clarify some
of the documentation added recently for archiving modules with
archive_command, that would still be used as default choice if no
external module is defined (though an archive module could as well use
an archive_command).
Author: Maxim Yablokov
Discussion: https://postgr.es/m/b47ec4e8-6f6a-2aba-038e-d5db150b245e@postgrespro.ru
Backpatch-through: 15
Diffstat (limited to 'doc/src/sgml/ref')
| -rw-r--r-- | doc/src/sgml/ref/alter_publication.sgml | 2 | ||||
| -rw-r--r-- | doc/src/sgml/ref/pg_basebackup.sgml | 4 | ||||
| -rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 10 |
3 files changed, 7 insertions, 9 deletions
diff --git a/doc/src/sgml/ref/alter_publication.sgml b/doc/src/sgml/ref/alter_publication.sgml index 3e338f4cc5d..3a74973da01 100644 --- a/doc/src/sgml/ref/alter_publication.sgml +++ b/doc/src/sgml/ref/alter_publication.sgml @@ -121,7 +121,7 @@ ALTER PUBLICATION <replaceable class="parameter">name</replaceable> RENAME TO <r with different column lists is not supported. So, changing the column lists of the tables being subscribed could cause inconsistency of column lists among publications, in which case <command>ALTER PUBLICATION</command> - will be successful but later the WalSender on the publisher or the + will be successful but later the walsender on the publisher or the subscriber may throw an error. In this scenario, the user needs to recreate the subscription after adjusting the column list or drop the problematic publication using diff --git a/doc/src/sgml/ref/pg_basebackup.sgml b/doc/src/sgml/ref/pg_basebackup.sgml index 56ac7b754be..a5f63bd6609 100644 --- a/doc/src/sgml/ref/pg_basebackup.sgml +++ b/doc/src/sgml/ref/pg_basebackup.sgml @@ -101,9 +101,7 @@ PostgreSQL documentation <listitem> <para> All WAL records required for the backup must contain sufficient full-page writes, - which requires you to enable <varname>full_page_writes</varname> on the primary and - not to use a tool in your <varname>archive_library</varname> to remove - full-page writes from WAL files. + which requires you to enable <varname>full_page_writes</varname> on the primary. </para> </listitem> </itemizedlist> diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 65bb0a6a3f3..e48ad247003 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -4625,10 +4625,10 @@ testdb=> \set PROMPT1 '%[%033[1;33;40m%]%n@%/%R%[%033[0m%]%# ' and SQL object names in many (by no means all) contexts. For example, at the start of a command, typing <literal>ins</literal> and pressing TAB will fill in <literal>insert into </literal>. Then, typing a few - characters of a table or schema name and pressing TAB will fill in the - unfinished name, or offer a menu of possible completions when there's - more than one. (Depending on the library in use, you may need to - press TAB more than once to get a menu.) + characters of a table or schema name and pressing <literal>TAB</literal> + will fill in the unfinished name, or offer a menu of possible completions + when there's more than one. (Depending on the library in use, you may need to + press <literal>TAB</literal> more than once to get a menu.) </para> <para> @@ -4657,7 +4657,7 @@ $endif of <application>psql</application>. This prevents tab completion, use or recording of command line history, and editing of multi-line commands. It is particularly useful when you need to copy-and-paste - text that contains TAB characters. + text that contains <literal>TAB</literal> characters. </para> </refsect3> </refsect2> |
