pgsql: Move SplitGUCList() to fe_utils

From: Noah Misch <noah(at)leadboat(dot)com>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move SplitGUCList() to fe_utils
Date: 2026-08-10 13:41:20
Message-ID: E1wtQFk-00000000y1h-2yfy@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move SplitGUCList() to fe_utils

This is needed so that all versions of pg_upgrade that migrate logical
replication slots can parse the new output_plugin_libraries GUC.

Backpatch-through: 17
Security: CVE-2026-6471

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/20e9dcefdc292d23597209248a4eef01640e6e4a
Author: Jacob Champion <jchampion(at)postgresql(dot)org>

Modified Files
--------------
src/backend/utils/adt/varlena.c | 2 +-
src/bin/pg_dump/dumputils.c | 109 -----------------------------------
src/bin/pg_dump/dumputils.h | 3 -
src/fe_utils/string_utils.c | 110 ++++++++++++++++++++++++++++++++++++
src/include/fe_utils/string_utils.h | 2 +
5 files changed, 113 insertions(+), 113 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2026-08-10 13:41:21 pgsql: Replace fixed-size, too-short array with a palloc'd one.
Previous Message Noah Misch 2026-08-10 13:41:19 pgsql: pg_dump: avoid assuming how long pg_proc.protrftypes can be.