On Wed, Jul 10, 2024 at 11:11:13AM -0400, Tom Lane wrote: > Please, no. We went through a ton of permutations of that kind of > idea years ago, when it first became totally clear that cross-checks > between GUCs do not work nicely if implemented in check_hooks. > (You can find all the things we tried in the commit log, although > I don't recall exactly when.)
Understood. > A counter-example for what you just > said is when a configuration file like the above is loaded after > postmaster start. I haven't tested it, but from skimming around the code, it looks like ProcessConfigFileInternal() would deduplicate any previous entries in the file prior to applying the values and running the check hooks. Else, reloading a configuration file with multiple startup-only GUC entries could fail, even without bogus GUC check hooks. -- nathan