aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-08-14 17:29:33 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2017-08-14 17:29:33 -0400
commit21d304dfedb4f26d0d6587d9ac39b1b5c499bb55 (patch)
treebd5328464e037f15bf069fb91d54db06509b459c /src/backend/commands/tablecmds.c
parent5b6289c1e07dc45f09c3169a189e60d2fcaec2b3 (diff)
downloadpostgresql-21d304dfedb4f26d0d6587d9ac39b1b5c499bb55.tar.gz
postgresql-21d304dfedb4f26d0d6587d9ac39b1b5c499bb55.zip
Final pgindent + perltidy run for v10.
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r--src/backend/commands/tablecmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 2afde0abd8b..513a9ec4857 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -13509,8 +13509,8 @@ ATExecAttachPartition(List **wqueue, Relation rel, PartitionCmd *cmd)
* having to construct this list again, so we request the strongest lock
* on all partitions. We need the strongest lock, because we may decide
* to scan them if we find out that the table being attached (or its leaf
- * partitions) may contain rows that violate the partition constraint.
- * If the table has a constraint that would prevent such rows, which by
+ * partitions) may contain rows that violate the partition constraint. If
+ * the table has a constraint that would prevent such rows, which by
* definition is present in all the partitions, we need not scan the
* table, nor its partitions. But we cannot risk a deadlock by taking a
* weaker lock now and the stronger one only when needed.