Handle NULL for short descriptions of custom GUC variables
authorMichael Paquier <michael@paquier.xyz>
Sat, 28 May 2022 03:12:51 +0000 (12:12 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sat, 28 May 2022 03:12:51 +0000 (12:12 +0900)
commit1e6802990cdd223ac9d175cd804d6a475aebe5b6
tree0283c324d86744d95a367507277f172f73109df5
parent9e3dbc6fd9a38cd7c72289f7facd639976484e45
Handle NULL for short descriptions of custom GUC variables

If a short description is specified as NULL in one of the various
DefineCustomXXXVariable() functions available to external modules to
define a custom parameter, SHOW ALL would crash.  This change teaches
SHOW ALL to properly handle NULL short descriptions, as well as any code
paths that manipulate it, to gain in flexibility.  Note that
help_config.c was already able to do that, when describing a set of GUCs
for postgres --describe-config.

Author: Steve Chavez
Reviewed by: Nathan Bossart, Andres Freund, Michael Paquier, Tom Lane
Discussion: https://postgr.es/m/CAGRrpzY6hO-Kmykna_XvsTv8P2DshGiU6G3j8yGao4mk0CqjHA%40mail.gmail.com
Backpatch-through: 10
src/backend/utils/misc/guc.c