BUG #18829: RAISE NOTICE appends 's' to string in PostgreSQL 17.2 - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #18829: RAISE NOTICE appends 's' to string in PostgreSQL 17.2
Date
Msg-id 18829-2ed4d964795b3b57@postgresql.org
Whole thread Raw
Responses Re: BUG #18829: RAISE NOTICE appends 's' to string in PostgreSQL 17.2
Re: BUG #18829: RAISE NOTICE appends 's' to string in PostgreSQL 17.2
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18829
Logged by:          Armand
Email address:      armandnortjee@gmail.com
PostgreSQL version: 17.2
Operating system:   Windows 10
Description:

In PostgreSQL 17.2, when using the RAISE NOTICE command with a string
variable, the output incorrectly appends an extra 's' to the string value.
This issue does not occur when running the same code in earlier PostgreSQL
versions (e.g., PostgreSQL 16).

DO $$
DECLARE
    my_var TEXT := 'garth';
BEGIN
    RAISE NOTICE '%s is slim', my_var;
END
$$;

Expected Result:
The output should be:
NOTICE:  garth is slim

Actual Result:
The output incorrectly shows:
NOTICE:  garths is slim


pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #18828: Crash when pg_get_logical_snapshot_meta() passed empty string
Next
From: Tom Lane
Date:
Subject: Re: BUG #18829: RAISE NOTICE appends 's' to string in PostgreSQL 17.2