diff options
author | Robert Haas | 2017-09-14 15:11:12 +0000 |
---|---|---|
committer | Robert Haas | 2017-09-14 15:11:12 +0000 |
commit | 42651bdd68a123544d5bfd0773a170aa3b443f1b (patch) | |
tree | 2390a8426842b32883c13c564de231de1be74a5b | |
parent | 1555566d9ee1a996a28cc4601840a67831112695 (diff) |
Fix inconsistent capitalization.
Amit Langote
Discussion: http://postgr.es/m/a83a0899-19f5-594c-9aac-3ba0f16989a1@lab.ntt.co.jp
-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 96354bdee55..563bcda30cb 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -13779,7 +13779,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 |