mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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.
This commit is contained in:
@ -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 *
|
||||
|
Reference in New Issue
Block a user