From: Fujii Masao Date: Thu, 16 Jul 2026 04:35:36 +0000 (+0900) Subject: doc: Fix log_parameter_max_length docs to reference log_min_duration_statement X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a4d6d1d1d997cb46b2931abb99a1a67e59cf5ca;p=thirdparty%2Fpostgresql.git doc: Fix log_parameter_max_length docs to reference log_min_duration_statement The documentation for log_parameter_max_length said it affects messages generated by log_duration. However, log_duration alone does not log bind parameter values, so this is misleading. This commit updates the documentation to reference log_min_duration_statement, which can log bind parameters, to better reflect actual behavior. Backpatch to all supported versions. Author: Fujii Masao Reviewed-by: Surya Poondla Discussion: https://postgr.es/m/CAHGQGwGnCVMVz8-LU9F8Sh57bkQX3jMZzx7age7M0LFEz5=Fog@mail.gmail.com Backpatch-through: 14 --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index c688ed05f72..5b33465cd44 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -8041,9 +8041,10 @@ log_line_prefix = '%m [%p] %q%u@%d/%a ' This setting only affects log messages printed as a result of , - , and related settings. Non-zero - values of this setting add some overhead, particularly if parameters - are sent in binary form, since then conversion to text is required. + , and related settings. + Non-zero values of this setting add some overhead, particularly + if parameters are sent in binary form, since then conversion to + text is required.