pgsql: Sort guc_parameters.dat alphabetically by name

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Sort guc_parameters.dat alphabetically by name
Date: 2025-11-03 09:25:29
Message-ID: E1vFqob-004oTw-23@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Sort guc_parameters.dat alphabetically by name

The order in this list was previously pretty random and had grown
organically over time. This made it unnecessarily cumbersome to
maintain these lists, as there was no clear guidelines about where to
put new entries. Also, after the merger of the type-specific GUC
structs, the list still reflected the previous type-specific
super-order.

By using alphabetical order, the place for new entries becomes clear,
and often related entries will be listed close together.

This patch reorders the existing entries in guc_parameters.dat, and it
also augments the generation script to error if an entry is found at
the wrong place.

Note: The order is actually checked after lower-casing, to handle the
likes of "DateStyle".

Reviewed-by: John Naylor <johncnaylorls(at)gmail(dot)com>
Reviewed-by: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
Reviewed-by: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
Discussion: https://www.postgresql.org/message-id/flat/8fdfb91e-60fb-44fa-8df6-f5dea47353c9(at)eisentraut(dot)org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/fce7c73fba4e5e3014c27b8980aa07511d6e0f85

Modified Files
--------------
src/backend/utils/misc/gen_guc_tables.pl | 10 +
src/backend/utils/misc/guc_parameters.dat | 4918 ++++++++++++++---------------
2 files changed, 2469 insertions(+), 2459 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2025-11-03 10:49:53 pgsql: Add wal_fpi_bytes to VACUUM and ANALYZE logs
Previous Message Tom Lane 2025-11-02 21:57:59 pgsql: Change "long" numGroups fields to be Cardinality (i.e., double).