mirror of
https://github.com/postgres/postgres.git
synced 2025-06-08 22:02:03 +03:00
Remove inappropriate quotes
And adjust wording for consistency.
This commit is contained in:
parent
f209a0c559
commit
09c00af94e
@ -289,7 +289,7 @@ AlterForeignDataWrapperOwner_oid(Oid fwdId, Oid newOwnerId)
|
||||
if (!HeapTupleIsValid(tup))
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_UNDEFINED_OBJECT),
|
||||
errmsg("foreign-data wrapper with OID \"%u\" does not exist", fwdId)));
|
||||
errmsg("foreign-data wrapper with OID %u does not exist", fwdId)));
|
||||
|
||||
AlterForeignDataWrapperOwner_internal(rel, tup, newOwnerId);
|
||||
|
||||
@ -388,7 +388,7 @@ AlterForeignServerOwner_oid(Oid srvId, Oid newOwnerId)
|
||||
if (!HeapTupleIsValid(tup))
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_UNDEFINED_OBJECT),
|
||||
errmsg("server with OID \"%u\" does not exist", srvId)));
|
||||
errmsg("foreign server with OID %u does not exist", srvId)));
|
||||
|
||||
AlterForeignServerOwner_internal(rel, tup, newOwnerId);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user