To improve the code, move the error check in logical_read_xlog_page().
authorAmit Kapila <akapila@postgresql.org>
Tue, 9 Jul 2024 03:30:45 +0000 (09:00 +0530)
committerAmit Kapila <akapila@postgresql.org>
Tue, 9 Jul 2024 03:30:45 +0000 (09:00 +0530)
commit571f7f70865cdaf1a49e7934208ad139575e3f03
tree7bf0cb71dfd1bc0b11399d0aa3744ba65fe8d1a7
parentb68b29bc8feca0eb340cb857ff1d28d4099c7878
To improve the code, move the error check in logical_read_xlog_page().

Commit 0fdab27ad6 changed the code to wait for WAL to be available before
determining the timeline but forgot to move the failure check.

This change is to make the related code easier to understand and enhance
otherwise there is no bug in the current code.

In the passing, improve the nearby comments to explain why we determine
am_cascading_walsender after waiting for the required WAL.

Author: Peter Smith
Reviewed-by: Bertrand Drouvot, Amit Kapila
Discussion: https://postgr.es/m/CAHut+PvqX49fusLyXspV1Mmd_EekPtXG0oT146vZjcb9XDvNgw@mail.gmail.com
src/backend/replication/walsender.c