pgsql: Fix plpgsql's handling of -- comments following expressions.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix plpgsql's handling of -- comments following expressions.
Date: 2024-04-10 19:46:16
Message-ID: E1rudtg-001Ufy-4l@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix plpgsql's handling of -- comments following expressions.

Up to now, read_sql_construct() has collected all the source text from
the statement or expression's initial token up to the character just
before the "until" token. It normally tries to strip trailing
whitespace from that, largely for neatness. If there was a "-- text"
comment after the expression, this resulted in removing the newline
that terminates the comment, which creates a hazard if we try to paste
the collected text into a larger SQL construct without inserting a
newline after it. In particular this caused our handling of CASE
constructs to fail if there's a comment after a WHEN expression.

Commit 4adead1d2 noticed a similar problem with cursor arguments,
and worked around it through the rather crude hack of suppressing
the whitespace-trimming behavior for those. Rather than do that
and leave the hazard open for future hackers to trip over, let's
fix it properly. pl_scanner.c already has enough infrastructure
to report the end location of the expression's last token, so
we can copy up to that location and never collect any trailing
whitespace or comment to begin with.

Erik Wienhold and Tom Lane, per report from Michal Bartak.
Back-patch to all supported branches.

Discussion: https://postgr.es/m/CAAVzF_FjRoi8fOVuLCZhQJx6HATQ7MKm=aFOHWZODFnLmjX-xA@mail.gmail.com

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/5e9d8bed0094b146d64013d417c51eb0f69aeafd

Modified Files
--------------
src/pl/plpgsql/src/expected/plpgsql_control.out | 17 ++++++++++
src/pl/plpgsql/src/pl_gram.y | 43 +++++++++++--------------
src/pl/plpgsql/src/pl_scanner.c | 17 ++++++++++
src/pl/plpgsql/src/plpgsql.h | 1 +
src/pl/plpgsql/src/sql/plpgsql_control.sql | 14 ++++++++
src/test/regress/expected/plpgsql.out | 8 ++---
src/test/regress/sql/plpgsql.sql | 8 ++---
7 files changed, 74 insertions(+), 34 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2024-04-10 23:18:31 Re: pgsql: Refactor libpq state machine for negotiating encryption
Previous Message Heikki Linnakangas 2024-04-10 15:54:57 Re: pgsql: Add tests for libpq gssencmode and sslmode options