diff options
author | Fujii Masao <fujii@postgresql.org> | 2015-06-12 12:59:29 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2015-06-12 12:59:29 +0900 |
commit | 091c02a958fd0ae02b96492d9728efe8526385e6 (patch) | |
tree | fcc2414c372f77e760fcd6d1ad55fd7d2757cafb /src | |
parent | cd3cff4778e011c584e1481a6803dec5d4756a6e (diff) | |
download | postgresql-091c02a958fd0ae02b96492d9728efe8526385e6.tar.gz postgresql-091c02a958fd0ae02b96492d9728efe8526385e6.zip |
Fix alphabetization in catalogs.sgml.
System catalogs and views should be listed alphabetically
in catalog.sgml, but only pg_file_settings view not.
This patch also fixes typos in pg_file_settings comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index b3c9f14ea4d..230c5cc0ef2 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -8182,7 +8182,7 @@ show_all_settings(PG_FUNCTION_ARGS) * show_all_file_settings * * returns a table of all parameter settings in all configuration files - * which includes the config file path/name, filename, a sequence number + * which includes the config file path/name, the line number, a sequence number * indicating when we loaded it, the parameter name, and the value it is * set to. * @@ -8208,8 +8208,8 @@ show_all_file_settings(PG_FUNCTION_ARGS) oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx); /* - * need a tuple descriptor representing NUM_PG_SETTINGS_ATTS columns - * of the appropriate types + * need a tuple descriptor representing NUM_PG_FILE_SETTINGS_ATTS + * columns of the appropriate types */ tupdesc = CreateTemplateTupleDesc(NUM_PG_FILE_SETTINGS_ATTS, false); @@ -8279,7 +8279,6 @@ show_all_file_settings(PG_FUNCTION_ARGS) { SRF_RETURN_DONE(funcctx); } - } static char * |