On 03/09/22 19:06, Nathan Bossart wrote:
> Done. I went ahead and added "label => 'label'" for consistency.
Looks like this change to an example in func.sgml is not quite right:
-postgres=# SELECT * FROM pg_walfile_name_offset(pg_stop_backup());
+postgres=# SELECT * FROM pg_walfile_name_offset(pg_backup_stop());
pg_backup_stop returns a record now, not just lsn. So this works for me:
+postgres=# SELECT * FROM pg_walfile_name_offset((pg_backup_stop()).lsn);
Otherwise, all looks to be in good order.
Regards,
-Chap