Thread: pgsql: Introduce variables for initial and max nesting depth on configu

pgsql: Introduce variables for initial and max nesting depth on configu

From
Michael Paquier
Date:
Introduce variables for initial and max nesting depth on configuration files

The code has been assuming already in a few places that the initial
recursion nesting depth is 0, and the recent changes in hba.c (mainly
783e8c6) have relies on this assumption in more places.  The maximum
recursion nesting level is assumed to be 10 for hba.c and GUCs.

Author: Julien Rouhaud
Discussion: https://postgr.es/m/20221124090724.n7amf5kpdhx6vb76@jrouhaud

Branch
------
master

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

Modified Files
--------------
src/backend/commands/extension.c  |  4 +++-
src/backend/libpq/hba.c           | 10 +++++-----
src/backend/utils/misc/guc-file.l |  5 +++--
src/backend/utils/misc/guc.c      |  8 +++++---
src/include/utils/conffiles.h     |  4 ++++
5 files changed, 20 insertions(+), 11 deletions(-)