diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 |
commit | 927d61eeff78363ea3938c818d07e511ebaf75cf (patch) | |
tree | 2f0bcecf53327f76272a8ce690fa62505520fab9 /src/backend/tcop/utility.c | |
parent | 60801944fa105252b48ea5688d47dfc05c695042 (diff) |
Run pgindent on 9.2 source tree in preparation for first 9.3
commit-fest.
Diffstat (limited to 'src/backend/tcop/utility.c')
-rw-r--r-- | src/backend/tcop/utility.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 89f78f2e82b..8b73858300e 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -82,8 +82,8 @@ CheckRelationOwnership(RangeVar *rel, bool noCatalogs) * XXX: This is unsafe in the presence of concurrent DDL, since it is * called before acquiring any lock on the target relation. However, * locking the target relation (especially using something like - * AccessExclusiveLock) before verifying that the user has permissions - * is not appealing either. + * AccessExclusiveLock) before verifying that the user has permissions is + * not appealing either. */ relOid = RangeVarGetRelid(rel, NoLock, false); @@ -634,7 +634,7 @@ standard_ProcessUtility(Node *parsetree, case OBJECT_INDEX: if (((DropStmt *) parsetree)->concurrent) PreventTransactionChain(isTopLevel, - "DROP INDEX CONCURRENTLY"); + "DROP INDEX CONCURRENTLY"); /* fall through */ case OBJECT_TABLE: @@ -712,7 +712,7 @@ standard_ProcessUtility(Node *parsetree, LOCKMODE lockmode; /* - * Figure out lock mode, and acquire lock. This also does + * Figure out lock mode, and acquire lock. This also does * basic permissions checks, so that we won't wait for a lock * on (for example) a relation on which we have no * permissions. @@ -753,8 +753,8 @@ standard_ProcessUtility(Node *parsetree, } else ereport(NOTICE, - (errmsg("relation \"%s\" does not exist, skipping", - atstmt->relation->relname))); + (errmsg("relation \"%s\" does not exist, skipping", + atstmt->relation->relname))); } break; |