summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorPeter Eisentraut2024-01-18 08:35:12 +0000
committerPeter Eisentraut2024-01-18 08:35:12 +0000
commited1e0a65127a61f7c9497aac6016324f250bc0e9 (patch)
tree8521afc629d2c9c5bc608fba9a9efb3aa17e1d6e /contrib
parent686db12de3a01222de6bce56f40f4fb9259f7b37 (diff)
Error message capitalisation
per style guidelines Author: Peter Smith <[email protected]> Discussion: https://www.postgresql.org/message-id/flat/CAHut%2BPtzstExQ4%3DvFH%2BWzZ4g4xEx2JA%3DqxussxOdxVEwJce6bw%40mail.gmail.com
Diffstat (limited to 'contrib')
-rw-r--r--contrib/pg_surgery/heap_surgery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_surgery/heap_surgery.c b/contrib/pg_surgery/heap_surgery.c
index 58641b8adfb..37dffe3f7d5 100644
--- a/contrib/pg_surgery/heap_surgery.c
+++ b/contrib/pg_surgery/heap_surgery.c
@@ -95,7 +95,7 @@ heap_force_common(FunctionCallInfo fcinfo, HeapTupleForceOption heap_force_opt)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("recovery is in progress"),
- errhint("heap surgery functions cannot be executed during recovery.")));
+ errhint("Heap surgery functions cannot be executed during recovery.")));
/* Check inputs. */
sanity_check_tid_array(ta, &ntids);