Fix a couple more places in docs for pg_lsn change
authorÁlvaro Herrera
Tue, 8 Jul 2025 16:37:55 +0000 (18:37 +0200)
committerÁlvaro Herrera
Tue, 8 Jul 2025 16:38:47 +0000 (18:38 +0200)
Also, revert Unicode linestyle to ASCII.

Reported-by: Japin Li
Discussion: https://postgr.es/m/ME0P300MB04453A39931F95805C4205A8B64FA@ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM

doc/src/sgml/datatype.sgml
doc/src/sgml/func.sgml
doc/src/sgml/pageinspect.sgml

index 49a7c180a803e71058433dd68692f21eaa8f0594..0994e08931155f6b5eeee5d02db5a5b35765ee01 100644 (file)
@@ -5121,7 +5121,7 @@ WHERE ...
     +(pg_lsn,numeric) and
     -(pg_lsn,numeric) operators, respectively. Note that
     the calculated LSN should be in the range of pg_lsn type,
-    i.e., between 0/0 and
+    i.e., between 0/00000000 and
     FFFFFFFF/FFFFFFFF.
    
   
index 810b2b50f0da82a3d36dcca8a97bd43b17c5dd44..c28aa71f570d4e3911acdf84b5a016dc8c54d7a4 100644 (file)
@@ -28521,7 +28521,7 @@ acl      | {postgres=arwdDxtm/postgres,foo=r/postgres}
         Returns information about the progress of the WAL summarizer. If the
         WAL summarizer has never run since the instance was started, then
         summarized_tli and summarized_lsn
-        will be 0 and 0/0 respectively;
+        will be 0 and 0/00000000 respectively;
         otherwise, they will be the TLI and ending LSN of the last WAL summary
         file written to disk. If the WAL summarizer is currently running,
         pending_lsn will be the ending LSN of the last
index 12873d17d7fadc5e70624ea53cd28677ec4be2ad..12929333665555d43d328d2f4dc110fe5650e751 100644 (file)
@@ -741,9 +741,9 @@ test=# SELECT first_tid, nbytes, tids[0:5] AS some_tids
       For example:
 
 test=# SELECT * FROM gist_page_opaque_info(get_raw_page('test_gist_idx', 2));
-    lsn     │    nsn     │ rightlink │ flags  
-────────────┼────────────┼───────────┼────────
- 0/0B5FE088 │ 0/00000000 │         1 │ {leaf}
+    lsn     |    nsn     | rightlink | flags  
+------------+------------+-----------+--------
+ 0/0B5FE088 | 0/00000000 |         1 | {leaf}
 (1 row)