mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Message style improvements
This commit is contained in:
@ -991,7 +991,7 @@ createdb(ParseState *pstate, const CreatedbStmt *stmt)
|
||||
else
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("invalid create database strategy %s", strategy),
|
||||
errmsg("invalid create database strategy \"%s\"", strategy),
|
||||
errhint("Valid strategies are \"wal_log\", and \"file_copy\".")));
|
||||
}
|
||||
|
||||
|
@ -575,7 +575,7 @@ check_simple_rowfilter_expr_walker(Node *node, ParseState *pstate)
|
||||
/* OK, supported */
|
||||
break;
|
||||
default:
|
||||
errdetail_msg = _("Expressions only allow columns, constants, built-in operators, built-in data types, built-in collations, and immutable built-in functions.");
|
||||
errdetail_msg = _("Only columns, constants, built-in operators, built-in data types, built-in collations, and immutable built-in functions are allowed.");
|
||||
break;
|
||||
}
|
||||
|
||||
@ -1359,7 +1359,7 @@ CheckAlterPublication(AlterPublicationStmt *stmt, HeapTuple tup,
|
||||
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
|
||||
errmsg("publication \"%s\" is defined as FOR ALL TABLES",
|
||||
NameStr(pubform->pubname)),
|
||||
errdetail("Tables from schema cannot be added to, dropped from, or set on FOR ALL TABLES publications.")));
|
||||
errdetail("Schemas cannot be added to or dropped from FOR ALL TABLES publications.")));
|
||||
|
||||
/* Check that user is allowed to manipulate the publication tables. */
|
||||
if (tables && pubform->puballtables)
|
||||
|
@ -430,10 +430,8 @@ check_publications(WalReceiverConn *wrconn, List *publications)
|
||||
|
||||
if (res->status != WALRCV_OK_TUPLES)
|
||||
ereport(ERROR,
|
||||
errmsg_plural("could not receive publication from the publisher: %s",
|
||||
"could not receive list of publications from the publisher: %s",
|
||||
list_length(publications),
|
||||
res->err));
|
||||
errmsg("could not receive list of publications from the publisher: %s",
|
||||
res->err));
|
||||
|
||||
publicationsCopy = list_copy(publications);
|
||||
|
||||
|
@ -1571,7 +1571,7 @@ renametrig(RenameStmt *stmt)
|
||||
ereport(ERROR,
|
||||
errmsg("cannot rename trigger \"%s\" on table \"%s\"",
|
||||
stmt->subname, RelationGetRelationName(targetrel)),
|
||||
errhint("Rename trigger on partitioned table \"%s\" instead.",
|
||||
errhint("Rename the trigger on the partitioned table \"%s\" instead.",
|
||||
get_rel_name(get_partition_parent(relid, false))));
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user