1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Rename track_iotiming GUC to track_io_timing.

This spelling seems significantly more readable to me.
This commit is contained in:
Tom Lane
2012-04-29 16:23:54 -04:00
parent 5f2b089387
commit 309c64745e
7 changed files with 18 additions and 17 deletions

View File

@ -1019,11 +1019,11 @@ static struct config_bool ConfigureNamesBool[] =
NULL, NULL, NULL
},
{
{"track_iotiming", PGC_SUSET, STATS_COLLECTOR,
gettext_noop("Collects timing information for database IO activity."),
{"track_io_timing", PGC_SUSET, STATS_COLLECTOR,
gettext_noop("Collects timing statistics for database I/O activity."),
NULL
},
&track_iotiming,
&track_io_timing,
false,
NULL, NULL, NULL
},