diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-09-14 11:11:12 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-09-14 11:11:56 -0400 |
commit | 29f021160ea7bfbc02600e651cf3588bb4ce8e78 (patch) | |
tree | a33c3189b98454fb32bbca7ea2d64d69c02a3a51 /src | |
parent | 448aa36e8b969da257bb58a6fe3db6498d48d4e8 (diff) | |
download | postgresql-29f021160ea7bfbc02600e651cf3588bb4ce8e78.tar.gz postgresql-29f021160ea7bfbc02600e651cf3588bb4ce8e78.zip |
Fix inconsistent capitalization.
Amit Langote
Discussion: http://postgr.es/m/a83a0899-19f5-594c-9aac-3ba0f16989a1@lab.ntt.co.jp
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index ec2e76d5c9f..33c99b3777e 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -13504,7 +13504,7 @@ ATExecAttachPartition(List **wqueue, Relation rel, PartitionCmd *cmd) * Prevent circularity by seeing if rel is a partition of attachrel. (In * particular, this disallows making a rel a partition of itself.) * - * We do that by checking if rel is a member of the list of attachRel's + * We do that by checking if rel is a member of the list of attachrel's * partitions provided the latter is partitioned at all. We want to avoid * having to construct this list again, so we request the strongest lock * on all partitions. We need the strongest lock, because we may decide |