Commit ef5d4a3c authored by Peter Eisentraut's avatar Peter Eisentraut

Message style improvements

parent 9492cf86
...@@ -112,7 +112,7 @@ brinvalidate(Oid opclassoid) ...@@ -112,7 +112,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s contains function %s with invalid support number %d", errmsg("brin operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -128,7 +128,7 @@ brinvalidate(Oid opclassoid) ...@@ -128,7 +128,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s contains function %s with wrong signature for support number %d", errmsg("brin operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -150,7 +150,7 @@ brinvalidate(Oid opclassoid) ...@@ -150,7 +150,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s contains operator %s with invalid strategy number %d", errmsg("brin operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -179,7 +179,7 @@ brinvalidate(Oid opclassoid) ...@@ -179,7 +179,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s contains invalid ORDER BY specification for operator %s", errmsg("brin operator family \"%s\" contains invalid ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -192,7 +192,7 @@ brinvalidate(Oid opclassoid) ...@@ -192,7 +192,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s contains operator %s with wrong signature", errmsg("brin operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -230,7 +230,7 @@ brinvalidate(Oid opclassoid) ...@@ -230,7 +230,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s is missing operator(s) for types %s and %s", errmsg("brin operator family \"%s\" is missing operator(s) for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -240,7 +240,7 @@ brinvalidate(Oid opclassoid) ...@@ -240,7 +240,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opfamily %s is missing support function(s) for types %s and %s", errmsg("brin operator family \"%s\" is missing support function(s) for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -253,7 +253,7 @@ brinvalidate(Oid opclassoid) ...@@ -253,7 +253,7 @@ brinvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opclass %s is missing operator(s)", errmsg("brin operator class \"%s\" is missing operator(s)",
opclassname))); opclassname)));
result = false; result = false;
} }
...@@ -264,7 +264,7 @@ brinvalidate(Oid opclassoid) ...@@ -264,7 +264,7 @@ brinvalidate(Oid opclassoid)
continue; /* got it */ continue; /* got it */
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("brin opclass %s is missing support function %d", errmsg("brin operator class \"%s\" is missing support function %d",
opclassname, i))); opclassname, i)));
result = false; result = false;
} }
......
...@@ -89,7 +89,7 @@ ginvalidate(Oid opclassoid) ...@@ -89,7 +89,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains support procedure %s with cross-type registration", errmsg("gin operator family \"%s\" contains support procedure %s with cross-type registration",
opfamilyname, opfamilyname,
format_procedure(procform->amproc)))); format_procedure(procform->amproc))));
result = false; result = false;
...@@ -145,7 +145,7 @@ ginvalidate(Oid opclassoid) ...@@ -145,7 +145,7 @@ ginvalidate(Oid opclassoid)
default: default:
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains function %s with invalid support number %d", errmsg("gin operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -157,7 +157,7 @@ ginvalidate(Oid opclassoid) ...@@ -157,7 +157,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains function %s with wrong signature for support number %d", errmsg("gin operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -176,7 +176,7 @@ ginvalidate(Oid opclassoid) ...@@ -176,7 +176,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains operator %s with invalid strategy number %d", errmsg("gin operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -189,7 +189,7 @@ ginvalidate(Oid opclassoid) ...@@ -189,7 +189,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains invalid ORDER BY specification for operator %s", errmsg("gin operator family \"%s\" contains invalid ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -202,7 +202,7 @@ ginvalidate(Oid opclassoid) ...@@ -202,7 +202,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opfamily %s contains operator %s with wrong signature", errmsg("gin operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -243,7 +243,7 @@ ginvalidate(Oid opclassoid) ...@@ -243,7 +243,7 @@ ginvalidate(Oid opclassoid)
continue; /* don't need both, see check below loop */ continue; /* don't need both, see check below loop */
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opclass %s is missing support function %d", errmsg("gin operator class \"%s\" is missing support function %d",
opclassname, i))); opclassname, i)));
result = false; result = false;
} }
...@@ -253,7 +253,7 @@ ginvalidate(Oid opclassoid) ...@@ -253,7 +253,7 @@ ginvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gin opclass %s is missing support function %d or %d", errmsg("gin operator class \"%s\" is missing support function %d or %d",
opclassname, opclassname,
GIN_CONSISTENT_PROC, GIN_TRICONSISTENT_PROC))); GIN_CONSISTENT_PROC, GIN_TRICONSISTENT_PROC)));
result = false; result = false;
......
...@@ -89,7 +89,7 @@ gistvalidate(Oid opclassoid) ...@@ -89,7 +89,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains support procedure %s with cross-type registration", errmsg("gist operator family \"%s\" contains support procedure %s with cross-type registration",
opfamilyname, opfamilyname,
format_procedure(procform->amproc)))); format_procedure(procform->amproc))));
result = false; result = false;
...@@ -142,7 +142,7 @@ gistvalidate(Oid opclassoid) ...@@ -142,7 +142,7 @@ gistvalidate(Oid opclassoid)
default: default:
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains function %s with invalid support number %d", errmsg("gist operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -154,7 +154,7 @@ gistvalidate(Oid opclassoid) ...@@ -154,7 +154,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains function %s with wrong signature for support number %d", errmsg("gist operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -174,7 +174,7 @@ gistvalidate(Oid opclassoid) ...@@ -174,7 +174,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains operator %s with invalid strategy number %d", errmsg("gist operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -192,7 +192,7 @@ gistvalidate(Oid opclassoid) ...@@ -192,7 +192,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains unsupported ORDER BY specification for operator %s", errmsg("gist operator family \"%s\" contains unsupported ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -203,7 +203,7 @@ gistvalidate(Oid opclassoid) ...@@ -203,7 +203,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains incorrect ORDER BY opfamily specification for operator %s", errmsg("gist operator family \"%s\" contains incorrect ORDER BY opfamily specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -222,7 +222,7 @@ gistvalidate(Oid opclassoid) ...@@ -222,7 +222,7 @@ gistvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opfamily %s contains operator %s with wrong signature", errmsg("gist operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -261,7 +261,7 @@ gistvalidate(Oid opclassoid) ...@@ -261,7 +261,7 @@ gistvalidate(Oid opclassoid)
continue; /* optional methods */ continue; /* optional methods */
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("gist opclass %s is missing support function %d", errmsg("gist operator class \"%s\" is missing support function %d",
opclassname, i))); opclassname, i)));
result = false; result = false;
} }
......
...@@ -95,7 +95,7 @@ hashvalidate(Oid opclassoid) ...@@ -95,7 +95,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains support procedure %s with cross-type registration", errmsg("hash operator family \"%s\" contains support procedure %s with cross-type registration",
opfamilyname, opfamilyname,
format_procedure(procform->amproc)))); format_procedure(procform->amproc))));
result = false; result = false;
...@@ -110,7 +110,7 @@ hashvalidate(Oid opclassoid) ...@@ -110,7 +110,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains function %s with wrong signature for support number %d", errmsg("hash operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -127,7 +127,7 @@ hashvalidate(Oid opclassoid) ...@@ -127,7 +127,7 @@ hashvalidate(Oid opclassoid)
default: default:
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains function %s with invalid support number %d", errmsg("hash operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -148,7 +148,7 @@ hashvalidate(Oid opclassoid) ...@@ -148,7 +148,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains operator %s with invalid strategy number %d", errmsg("hash operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -161,7 +161,7 @@ hashvalidate(Oid opclassoid) ...@@ -161,7 +161,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains invalid ORDER BY specification for operator %s", errmsg("hash operator family \"%s\" contains invalid ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -174,7 +174,7 @@ hashvalidate(Oid opclassoid) ...@@ -174,7 +174,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s contains operator %s with wrong signature", errmsg("hash operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -186,7 +186,7 @@ hashvalidate(Oid opclassoid) ...@@ -186,7 +186,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s lacks support function for operator %s", errmsg("hash operator family \"%s\" lacks support function for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -214,7 +214,7 @@ hashvalidate(Oid opclassoid) ...@@ -214,7 +214,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s is missing operator(s) for types %s and %s", errmsg("hash operator family \"%s\" is missing operator(s) for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -228,7 +228,7 @@ hashvalidate(Oid opclassoid) ...@@ -228,7 +228,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opclass %s is missing operator(s)", errmsg("hash operator class \"%s\" is missing operator(s)",
opclassname))); opclassname)));
result = false; result = false;
} }
...@@ -244,7 +244,7 @@ hashvalidate(Oid opclassoid) ...@@ -244,7 +244,7 @@ hashvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("hash opfamily %s is missing cross-type operator(s)", errmsg("hash operator family \"%s\" is missing cross-type operator(s)",
opfamilyname))); opfamilyname)));
result = false; result = false;
} }
......
...@@ -97,7 +97,7 @@ btvalidate(Oid opclassoid) ...@@ -97,7 +97,7 @@ btvalidate(Oid opclassoid)
default: default:
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s contains function %s with invalid support number %d", errmsg("btree operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -109,7 +109,7 @@ btvalidate(Oid opclassoid) ...@@ -109,7 +109,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s contains function %s with wrong signature for support number %d", errmsg("btree operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -129,7 +129,7 @@ btvalidate(Oid opclassoid) ...@@ -129,7 +129,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s contains operator %s with invalid strategy number %d", errmsg("btree operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -142,7 +142,7 @@ btvalidate(Oid opclassoid) ...@@ -142,7 +142,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s contains invalid ORDER BY specification for operator %s", errmsg("btree operator family \"%s\" contains invalid ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -155,7 +155,7 @@ btvalidate(Oid opclassoid) ...@@ -155,7 +155,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s contains operator %s with wrong signature", errmsg("btree operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -197,7 +197,7 @@ btvalidate(Oid opclassoid) ...@@ -197,7 +197,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s is missing operator(s) for types %s and %s", errmsg("btree operator family \"%s\" is missing operator(s) for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -207,7 +207,7 @@ btvalidate(Oid opclassoid) ...@@ -207,7 +207,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s is missing support function for types %s and %s", errmsg("btree operator family \"%s\" is missing support function for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -221,7 +221,7 @@ btvalidate(Oid opclassoid) ...@@ -221,7 +221,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opclass %s is missing operator(s)", errmsg("btree operator class \"%s\" is missing operator(s)",
opclassname))); opclassname)));
result = false; result = false;
} }
...@@ -238,7 +238,7 @@ btvalidate(Oid opclassoid) ...@@ -238,7 +238,7 @@ btvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("btree opfamily %s is missing cross-type operator(s)", errmsg("btree operator family \"%s\" is missing cross-type operator(s)",
opfamilyname))); opfamilyname)));
result = false; result = false;
} }
......
...@@ -89,7 +89,7 @@ spgvalidate(Oid opclassoid) ...@@ -89,7 +89,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains support procedure %s with cross-type registration", errmsg("spgist operator family \"%s\" contains support procedure %s with cross-type registration",
opfamilyname, opfamilyname,
format_procedure(procform->amproc)))); format_procedure(procform->amproc))));
result = false; result = false;
...@@ -112,7 +112,7 @@ spgvalidate(Oid opclassoid) ...@@ -112,7 +112,7 @@ spgvalidate(Oid opclassoid)
default: default:
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains function %s with invalid support number %d", errmsg("spgist operator family \"%s\" contains function %s with invalid support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -124,7 +124,7 @@ spgvalidate(Oid opclassoid) ...@@ -124,7 +124,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains function %s with wrong signature for support number %d", errmsg("spgist operator family \"%s\" contains function %s with wrong signature for support number %d",
opfamilyname, opfamilyname,
format_procedure(procform->amproc), format_procedure(procform->amproc),
procform->amprocnum))); procform->amprocnum)));
...@@ -143,7 +143,7 @@ spgvalidate(Oid opclassoid) ...@@ -143,7 +143,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains operator %s with invalid strategy number %d", errmsg("spgist operator family \"%s\" contains operator %s with invalid strategy number %d",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr), format_operator(oprform->amopopr),
oprform->amopstrategy))); oprform->amopstrategy)));
...@@ -156,7 +156,7 @@ spgvalidate(Oid opclassoid) ...@@ -156,7 +156,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains invalid ORDER BY specification for operator %s", errmsg("spgist operator family \"%s\" contains invalid ORDER BY specification for operator %s",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -169,7 +169,7 @@ spgvalidate(Oid opclassoid) ...@@ -169,7 +169,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s contains operator %s with wrong signature", errmsg("spgist operator family \"%s\" contains operator %s with wrong signature",
opfamilyname, opfamilyname,
format_operator(oprform->amopopr)))); format_operator(oprform->amopopr))));
result = false; result = false;
...@@ -197,7 +197,7 @@ spgvalidate(Oid opclassoid) ...@@ -197,7 +197,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s is missing operator(s) for types %s and %s", errmsg("spgist operator family \"%s\" is missing operator(s) for types %s and %s",
opfamilyname, opfamilyname,
format_type_be(thisgroup->lefttype), format_type_be(thisgroup->lefttype),
format_type_be(thisgroup->righttype)))); format_type_be(thisgroup->righttype))));
...@@ -217,7 +217,7 @@ spgvalidate(Oid opclassoid) ...@@ -217,7 +217,7 @@ spgvalidate(Oid opclassoid)
continue; /* got it */ continue; /* got it */
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opfamily %s is missing support function %d for type %s", errmsg("spgist operator family \"%s\" is missing support function %d for type %s",
opfamilyname, i, opfamilyname, i,
format_type_be(thisgroup->lefttype)))); format_type_be(thisgroup->lefttype))));
result = false; result = false;
...@@ -230,7 +230,7 @@ spgvalidate(Oid opclassoid) ...@@ -230,7 +230,7 @@ spgvalidate(Oid opclassoid)
{ {
ereport(INFO, ereport(INFO,
(errcode(ERRCODE_INVALID_OBJECT_DEFINITION), (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
errmsg("spgist opclass %s is missing operator(s)", errmsg("spgist operator class \"%s\" is missing operator(s)",
opclassname))); opclassname)));
result = false; result = false;
} }
......
...@@ -1645,8 +1645,11 @@ CheckPointTwoPhase(XLogRecPtr redo_horizon) ...@@ -1645,8 +1645,11 @@ CheckPointTwoPhase(XLogRecPtr redo_horizon)
if (log_checkpoints && serialized_xacts > 0) if (log_checkpoints && serialized_xacts > 0)
ereport(LOG, ereport(LOG,
(errmsg("%u two-phase state files were written " (errmsg_plural("%u two-phase state file was written "
"for long-running prepared transactions", "for long-running prepared transactions",
"%u two-phase state files were written "
"for long-running prepared transactions",
serialized_xacts,
serialized_xacts))); serialized_xacts)));
} }
......
...@@ -203,7 +203,7 @@ tqueueReceiveSlot(TupleTableSlot *slot, DestReceiver *self) ...@@ -203,7 +203,7 @@ tqueueReceiveSlot(TupleTableSlot *slot, DestReceiver *self)
else if (result != SHM_MQ_SUCCESS) else if (result != SHM_MQ_SUCCESS)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("unable to send tuples"))); errmsg("could not send tuples")));
return true; return true;
} }
......
...@@ -433,7 +433,7 @@ getNextFlagFromString(IspellDict *Conf, char **sflagset, char *sflag) ...@@ -433,7 +433,7 @@ getNextFlagFromString(IspellDict *Conf, char **sflagset, char *sflag)
if (Conf->flagMode == FM_LONG && maxstep > 0) if (Conf->flagMode == FM_LONG && maxstep > 0)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_CONFIG_FILE_ERROR), (errcode(ERRCODE_CONFIG_FILE_ERROR),
errmsg("invalid affix flag \"%s\" with long flag value", sbuf))); errmsg("invalid affix flag \"%s\" with \"long\" flag value", sbuf)));
*sflag = '\0'; *sflag = '\0';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment