diff options
author | Simon Riggs | 2017-04-18 10:57:11 +0000 |
---|---|---|
committer | Simon Riggs | 2017-04-18 10:57:11 +0000 |
commit | 123aaffb5b881f3dadaac676877a90b50233a847 (patch) | |
tree | 50252a44f0e230665074d02ed9bcdeecc2de19d9 /src/backend | |
parent | ee01f7092fb6430ad9bb9bb1f42f19d22bcb9329 (diff) |
Fix minor typo in comment
Reported-by: Amit Langote
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/partition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/partition.c b/src/backend/catalog/partition.c index ab891f6ef20..e0d2665a91b 100644 --- a/src/backend/catalog/partition.c +++ b/src/backend/catalog/partition.c @@ -549,7 +549,7 @@ RelationBuildPartitionDesc(Relation rel) { int orig_index = rbounds[i]->index; - /* If the old index is has no mapping, assign one */ + /* If the old index has no mapping, assign one */ if (mapping[orig_index] == -1) mapping[orig_index] = next_index++; |