mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Apply quotes more consistently to GUC names in logs
Quotes are applied to GUCs in a very inconsistent way across the code base, with a mix of double quotes or no quotes used. This commit removes double quotes around all the GUC names that are obviously referred to as parameters with non-English words (use of underscore, mixed case, etc). This is the result of a discussion with Álvaro Herrera, Nathan Bossart, Laurenz Albe, Peter Eisentraut, Tom Lane and Daniel Gustafsson. Author: Peter Smith Discussion: https://postgr.es/m/CAHut+Pv-kSN8SkxSdoHano_wPubqcg5789ejhCDZAcLFceBR-w@mail.gmail.com
This commit is contained in:
@ -423,7 +423,7 @@ CheckpointerMain(void)
|
||||
"checkpoints are occurring too frequently (%d seconds apart)",
|
||||
elapsed_secs,
|
||||
elapsed_secs),
|
||||
errhint("Consider increasing the configuration parameter \"max_wal_size\".")));
|
||||
errhint("Consider increasing the configuration parameter max_wal_size.")));
|
||||
|
||||
/*
|
||||
* Initialize checkpointer-private variables used during
|
||||
|
Reference in New Issue
Block a user