mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 14:19:26 -04:00
Remove inappropriate quotes
And adjust wording for consistency.
This commit is contained in:
parent
f209a0c559
commit
09c00af94e
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue