pgsql: Avoid throwing away the error message in syncrep_yyerror.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Avoid throwing away the error message in syncrep_yyerror.
Date: 2025-07-28 15:02:42
Message-ID: E1ugPNC-0019sX-1h@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Avoid throwing away the error message in syncrep_yyerror.

Commit 473a575e05979b4dbb28b3f2544f4ec8f184ce65 purported to make this
function stash the error message in *syncrep_parse_result_p, but
it didn't actually.

As a result, an attempt to set synchronous_standby_names to any value
that does not parse resulted in a generic "parser failed." message
rather than anything more specific. This fixes that.

Discussion: http://postgr.es/m/CA+TgmoYF9wPNZ-Q_EMfib_espgHycY-eX__6Tzo2GpYpVXqCdQ@mail.gmail.com
Backpatch-through: 18

Branch
------
REL_18_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/44e135ad57b242a89266b0aebaaf523a01a3484c

Modified Files
--------------
src/backend/replication/syncrep_scanner.l | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2025-07-28 15:17:55 pgsql: Remove misleading hint for "unexpected data beyond EOF" error.
Previous Message Michael Paquier 2025-07-27 23:43:08 pgsql: ecpg: Fix memory leaks in ecpg_auto_prepare()