diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 5ae6176528..0fa2f80b4a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -23915,28 +23915,8 @@ SELECT currval(pg_get_serial_sequence('sometable', 'id')); Returns an array of the flags associated with the given GUC, or 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. - - + Only the most useful flags listed in + are exposed. @@ -24344,6 +24324,46 @@ SELECT collation for ('foo' COLLATE "de_DE"); + + GUC Flags + + + FlagDescription + + + + EXPLAIN + Parameters with this flag are included in + EXPLAIN (SETTINGS) commands. + + + + NO_SHOW_ALL + Parameters with this flag are excluded from + SHOW ALL commands. + + + + NO_RESET_ALL + Parameters with this flag are excluded from + RESET ALL commands. + + + + NOT_IN_SAMPLE + Parameters with this flag are not included in + postgresql.conf by default. + + + + RUNTIME_COMPUTED + Parameters with this flag are runtime-computed ones. + + + + +
+ lists functions related to database object identification and addressing.