mirror of
https://github.com/postgres/postgres.git
synced 2025-06-17 17:02:08 +03:00
Error message capitalisation
per style guidelines Author: Peter Smith <peter.b.smith@fujitsu.com> Discussion: https://www.postgresql.org/message-id/flat/CAHut%2BPtzstExQ4%3DvFH%2BWzZ4g4xEx2JA%3DqxussxOdxVEwJce6bw%40mail.gmail.com
This commit is contained in:
@ -2479,7 +2479,7 @@ errdetail_params(ParamListInfo params)
|
||||
|
||||
str = BuildParamLogString(params, NULL, log_parameter_max_length);
|
||||
if (str && str[0] != '\0')
|
||||
errdetail("parameters: %s", str);
|
||||
errdetail("Parameters: %s", str);
|
||||
}
|
||||
|
||||
return 0;
|
||||
@ -2494,7 +2494,7 @@ static int
|
||||
errdetail_abort(void)
|
||||
{
|
||||
if (MyProc->recoveryConflictPending)
|
||||
errdetail("abort reason: recovery conflict");
|
||||
errdetail("Abort reason: recovery conflict");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user