aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-01-24 10:20:02 -0500
committerRobert Haas <rhaas@postgresql.org>2017-01-24 10:20:02 -0500
commit27cdb3414b3fb4c8fcc069572568390450bb04c9 (patch)
tree3a9dace39830062e588aad7d2062171bdec6f343 /src/backend/commands/trigger.c
parent96e0ccc2b589eda26585ed2a8dabf34b16747c1a (diff)
downloadpostgresql-27cdb3414b3fb4c8fcc069572568390450bb04c9.tar.gz
postgresql-27cdb3414b3fb4c8fcc069572568390450bb04c9.zip
Reindent table partitioning code.
We've accumulated quite a bit of stuff with which pgindent is not quite happy in this code; clean it up to provide a less-annoying base for future pgindent runs.
Diffstat (limited to 'src/backend/commands/trigger.c')
-rw-r--r--src/backend/commands/trigger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c
index 3fc3a21cee8..68fa7acfb17 100644
--- a/src/backend/commands/trigger.c
+++ b/src/backend/commands/trigger.c
@@ -193,7 +193,7 @@ CreateTrigger(CreateTrigStmt *stmt, const char *queryString,
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
errmsg("\"%s\" is a partitioned table",
RelationGetRelationName(rel)),
- errdetail("Partitioned tables cannot have ROW triggers.")));
+ errdetail("Partitioned tables cannot have ROW triggers.")));
}
else if (rel->rd_rel->relkind == RELKIND_VIEW)
{