Skip to content

Commit aa39b4e

Browse files
author
Álvaro Herrera
committed
Fix a couple more places in docs for pg_lsn change
Also, revert Unicode linestyle to ASCII. Reported-by: Japin Li <japinli@hotmail.com> Discussion: https://postgr.es/m/ME0P300MB04453A39931F95805C4205A8B64FA@ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM
1 parent 0b096e3 commit aa39b4e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/src/sgml/datatype.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5121,7 +5121,7 @@ WHERE ...
51215121
<literal>+(pg_lsn,numeric)</literal> and
51225122
<literal>-(pg_lsn,numeric)</literal> operators, respectively. Note that
51235123
the calculated LSN should be in the range of <type>pg_lsn</type> type,
5124-
i.e., between <literal>0/0</literal> and
5124+
i.e., between <literal>0/00000000</literal> and
51255125
<literal>FFFFFFFF/FFFFFFFF</literal>.
51265126
</para>
51275127
</sect1>

doc/src/sgml/func.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28521,7 +28521,7 @@ acl | {postgres=arwdDxtm/postgres,foo=r/postgres}
2852128521
Returns information about the progress of the WAL summarizer. If the
2852228522
WAL summarizer has never run since the instance was started, then
2852328523
<literal>summarized_tli</literal> and <literal>summarized_lsn</literal>
28524-
will be <literal>0</literal> and <literal>0/0</literal> respectively;
28524+
will be <literal>0</literal> and <literal>0/00000000</literal> respectively;
2852528525
otherwise, they will be the TLI and ending LSN of the last WAL summary
2852628526
file written to disk. If the WAL summarizer is currently running,
2852728527
<literal>pending_lsn</literal> will be the ending LSN of the last

doc/src/sgml/pageinspect.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -741,9 +741,9 @@ test=# SELECT first_tid, nbytes, tids[0:5] AS some_tids
741741
For example:
742742
<screen>
743743
test=# SELECT * FROM gist_page_opaque_info(get_raw_page('test_gist_idx', 2));
744-
lsn nsn rightlink flags
745-
────────────┼────────────┼───────────┼────────
746-
0/0B5FE088 0/00000000 1 {leaf}
744+
lsn | nsn | rightlink | flags
745+
------------+------------+-----------+--------
746+
0/0B5FE088 | 0/00000000 | 1 | {leaf}
747747
(1 row)
748748
</screen>
749749
</para>

0 commit comments

Comments
 (0)