| From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
|---|---|
| To: | Alexander Korotkov <akorotkov(at)postgresql(dot)org>, pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | Re: pgsql: Add the MODE option to the WAIT FOR LSN command |
| Date: | 2026-01-19 16:26:42 |
| Message-ID: | 8d72a2b3-7423-4a15-a981-e130bf60b1a6@eisentraut.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
On 05.01.26 18:56, Alexander Korotkov wrote:
> Add the MODE option to the WAIT FOR LSN command
> Details
> -------
> https://git.postgresql.org/pg/commitdiff/49a181b5d634340fcfb7c762c387c03f6405367e
>
> Modified Files
> --------------
> doc/src/sgml/ref/wait_for.sgml | 213 +++++++++++++----
> src/backend/access/transam/xlog.c | 22 +-
> src/backend/commands/wait.c | 174 ++++++++++++--
> src/backend/replication/walreceiver.c | 18 ++
> src/test/recovery/t/049_wait_for_lsn.pl | 411 +++++++++++++++++++++++++++++---
> 5 files changed, 741 insertions(+), 97 deletions(-)
This patch adds several instances in src/backend/commands/wait.c where
an elog(ERROR) is followed immediately by pg_unreachable(). I think
this is redundant. I think this pattern has been used historically in
functions that return non-void where the elog(ERROR) is the last call,
to avoid warnings about a missing return. But in this case, the
function returns void. Check please if this is really necessary or just
copy-and-pasted.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Robert Haas | 2026-01-19 17:41:43 | pgsql: Don't set the truncation block length greater than RELSEG_SIZE. |
| Previous Message | Jakub Wartak | 2026-01-19 11:47:19 | Re: failed NUMA pages inquiry status: Operation not permitted |