From: Robert Haas Date: Tue, 6 Dec 2011 20:50:02 +0000 (-0500) Subject: Typo fixes for commit 2ad36c4e44c8b513f6155656e1b7a8d26715bb94. X-Git-Tag: REL9_2_BETA1~717 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2a662182eac1069ff3874a1db499508a13c6bca;p=thirdparty%2Fpostgresql.git Typo fixes for commit 2ad36c4e44c8b513f6155656e1b7a8d26715bb94. Noted during post-commit review by by Noah Misch. --- diff --git a/src/backend/catalog/namespace.c b/src/backend/catalog/namespace.c index 25cad3d1528..807d966095b 100644 --- a/src/backend/catalog/namespace.c +++ b/src/backend/catalog/namespace.c @@ -318,9 +318,9 @@ RangeVarGetRelidExtended(const RangeVar *relation, LOCKMODE lockmode, * This callback is a good place to check permissions: we haven't taken * the table lock yet (and it's really best to check permissions before * locking anything!), but we've gotten far enough to know what OID we - * think we should lock. Of course, concurrent DDL might things while - * we're waiting for the lock, but in that case the callback will be - * invoked again for the new OID. + * think we should lock. Of course, concurrent DDL might change things + * while we're waiting for the lock, but in that case the callback will + * be invoked again for the new OID. */ if (callback) callback(relation, relId, oldRelId, callback_arg); diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 1c3fe6a9630..1ee201c141a 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -830,7 +830,7 @@ RangeVarCallbackForDropRelation(const RangeVar *rel, Oid relOid, Oid oldRelOid, state->heapOid = InvalidOid; } - /* Didn't find a relation, so need for locking or permission checks. */ + /* Didn't find a relation, so no need for locking or permission checks. */ if (!OidIsValid(relOid)) return;