projects
/
users
/
hanada
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a45aa63
)
Fix indent.
author
Shigeru Hanada
<
[email protected]
>
Thu, 25 Nov 2010 05:28:34 +0000
(14:28 +0900)
committer
Shigeru Hanada
<
[email protected]
>
Thu, 25 Nov 2010 05:28:34 +0000
(14:28 +0900)
src/backend/commands/tablecmds.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/commands/tablecmds.c
b/src/backend/commands/tablecmds.c
index 4b5c80185224cc4703440997cd23e08c93502231..0d2aeeab848c01792eb6ea7aaa63cfb66c063ab7 100644
(file)
--- a/
src/backend/commands/tablecmds.c
+++ b/
src/backend/commands/tablecmds.c
@@
-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);
}