From 735f4f095516ac7b1d4d838aeada3acffb4ae036 Mon Sep 17 00:00:00 2001 From: Fujii Masao Date: Fri, 15 Jul 2022 22:19:58 +0900 Subject: [PATCH] Improve pg_settings_get_flags docs. --- doc/src/sgml/func.sgml | 52 +++++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 21 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index b6783b7ad0..f79a8e807c 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -24976,27 +24976,37 @@ SELECT currval(pg_get_serial_sequence('sometable', 'id')); NULL if it does not exist. The result is an empty array if the GUC exists but there are no flags to show. Only the most useful flags are exposed, as of the following: - - - EXPLAIN: parameters included in - EXPLAIN (SETTINGS) commands. - - - NO_SHOW_ALL: parameters excluded from - SHOW ALL commands. - - - NO_RESET_ALL: parameters excluded from - RESET ALL commands. - - - NOT_IN_SAMPLE: parameters not included in - postgresql.conf by default. - - - RUNTIME_COMPUTED: runtime-computed parameters. - - + + + + EXPLAIN: parameters included in + EXPLAIN (SETTINGS) commands. + + + + + NO_SHOW_ALL: parameters excluded from + SHOW ALL commands. + + + + + NO_RESET_ALL: parameters excluded from + RESET ALL commands. + + + + + NOT_IN_SAMPLE: parameters not included in + postgresql.conf by default. + + + + + RUNTIME_COMPUTED: runtime-computed parameters. + + + -- 2.36.0