mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-23 19:39:53 +08:00
doc: Fix example query for pg_walinspect
The LIMIT clause had ended up in the wrong place in the query. Backpatch to v15 where pg_walinspect was introduced. Reported-by: Jian He <jian.universality@gmail.com> Discussion: https://postgr.es/m/CACJufxHqXDr4NnmwmR6pEiVPAg54J0dgwMuYQzrH5BX6+NtF1g@mail.gmail.com Backpatch-through: 15
This commit is contained in:
parent
8f5e42d334
commit
661bf96cd2
@ -250,8 +250,9 @@ block_fpi_data |
|
||||
For example:
|
||||
<screen>
|
||||
postgres=# SELECT * FROM pg_get_wal_stats('0/1E847D00', '0/1E84F500')
|
||||
WHERE count > 0 LIMIT 1 AND
|
||||
"resource_manager/record_type" = 'Transaction';
|
||||
WHERE count > 0 AND
|
||||
"resource_manager/record_type" = 'Transaction'
|
||||
LIMIT 1;
|
||||
-[ RECORD 1 ]----------------+-------------------
|
||||
resource_manager/record_type | Transaction
|
||||
count | 2
|
||||
|
Loading…
Reference in New Issue
Block a user