Fix indent.
authorShigeru Hanada <[email protected]>
Thu, 25 Nov 2010 05:28:34 +0000 (14:28 +0900)
committerShigeru Hanada <[email protected]>
Thu, 25 Nov 2010 05:28:34 +0000 (14:28 +0900)
src/backend/commands/tablecmds.c

index 4b5c80185224cc4703440997cd23e08c93502231..0d2aeeab848c01792eb6ea7aaa63cfb66c063ab7 100644 (file)
@@ -3618,10 +3618,10 @@ ATSimplePermissions(Relation rel, bool allowView, bool allowType, bool allowFore
            (relkind == RELKIND_COMPOSITE_TYPE && !allowType) ||
            (relkind == RELKIND_FOREIGN_TABLE && !allowForeignTable))
        {
-               ereport(ERROR,
-                       (errcode(ERRCODE_WRONG_OBJECT_TYPE),
-                        errmsg("\"%s\" is not a %s",
-                               RelationGetRelationName(rel), allowed.data)));
+           ereport(ERROR,
+                   (errcode(ERRCODE_WRONG_OBJECT_TYPE),
+                    errmsg("\"%s\" is not a %s",
+                           RelationGetRelationName(rel), allowed.data)));
        }
        pfree(allowed.data);
    }