diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/logicaldecoding.sgml | 10 | ||||
-rw-r--r-- | doc/src/sgml/postgres-fdw.sgml | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 5b763bf60f4..7a48973b3c8 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4746,7 +4746,7 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class=" log file by reducing the value of this parameter. On a system with low WAL activity, increasing it reduces the amount of requests necessary to access WAL archives, something useful for example in cloud - environments where the amount of times an infrastructure is accessed + environments where the number of times an infrastructure is accessed is taken into account. </para> </listitem> @@ -7515,7 +7515,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; Including <literal>jsonlog</literal> in the <varname>log_destination</varname> list provides a convenient way to import log files into many different programs. This option emits log - lines in (<acronym>JSON</acronym>) format. + lines in <acronym>JSON</acronym> format. </para> <para> diff --git a/doc/src/sgml/logicaldecoding.sgml b/doc/src/sgml/logicaldecoding.sgml index 3d7d52a84d6..a6ea6ff3fcf 100644 --- a/doc/src/sgml/logicaldecoding.sgml +++ b/doc/src/sgml/logicaldecoding.sgml @@ -832,10 +832,10 @@ typedef void (*LogicalDecodeSequenceCB) (struct LogicalDecodingContext *ctx, The <parameter>txn</parameter> parameter contains meta information about the transaction the sequence change is part of. Note however that for non-transactional increments, the transaction may be either NULL or not - NULL, depending on if the transaction already has XID assigned. - The <parameter>sequence_lsn</parameter> has WAL location of the sequence - update. The <parameter>transactional</parameter> says if the sequence has - to be replayed as part of the transaction or directly. + NULL, depending on if the transaction already has an XID assigned. + The <parameter>sequence_lsn</parameter> has the WAL location of the + sequence update. <parameter>transactional</parameter> says if the + sequence has to be replayed as part of the transaction or directly. The <parameter>last_value</parameter>, <parameter>log_cnt</parameter> and <parameter>is_called</parameter> parameters describe the sequence change. @@ -1264,7 +1264,7 @@ OutputPluginWrite(ctx, true); streamed in blocks demarcated by <function>stream_start_cb</function> and <function>stream_stop_cb</function> callbacks. Once all the decoded changes are transmitted, the transaction can be committed using the - the <function>stream_commit_cb</function> callback + <function>stream_commit_cb</function> callback (or possibly aborted using the <function>stream_abort_cb</function> callback). If two-phase commits are supported, the transaction can be prepared using the <function>stream_prepare_cb</function> callback, diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index 8ebf0dc3a05..d8dc7155874 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -1003,7 +1003,7 @@ postgres=# SELECT postgres_fdw_disconnect_all(); it's passed to and used as <varname>application_name</varname> in a foreign server, note that it will be truncated to less than <symbol>NAMEDATALEN</symbol> characters and anything other than - than printable ASCII characters will be replaced with question + printable ASCII characters will be replaced with question marks (<literal>?</literal>). See <xref linkend="guc-application-name"/> for details. </para> |