Also, revert Unicode linestyle to ASCII.
Reported-by: Japin Li
Discussion: https://postgr.es/m/ME0P300MB04453A39931F95805C4205A8B64FA@ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM
+(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.
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
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)