Fix typos in comments.
authorEtsuro Fujita <efujita@postgresql.org>
Wed, 7 Aug 2019 10:05:17 +0000 (19:05 +0900)
committerEtsuro Fujita <efujita@postgresql.org>
Wed, 7 Aug 2019 10:05:17 +0000 (19:05 +0900)
src/backend/partitioning/partbounds.c

index d7ef942973cba785f76929d022c586ad89701bb9..5a29b9673b8c984ed0b50276d86e26814f5b5a51 100644 (file)
@@ -453,7 +453,7 @@ create_list_bounds(PartitionBoundSpec **boundspecs, int nparts,
        boundinfo->default_index = (*mapping)[default_index];
    }
 
-   /* All partition must now have been assigned canonical indexes. */
+   /* All partitions must now have been assigned canonical indexes. */
    Assert(next_index == nparts);
    return boundinfo;
 }
@@ -651,7 +651,7 @@ create_range_bounds(PartitionBoundSpec **boundspecs, int nparts,
    Assert(i == ndatums);
    boundinfo->indexes[i] = -1;
 
-   /* All partition must now have been assigned canonical indexes. */
+   /* All partitions must now have been assigned canonical indexes. */
    Assert(next_index == nparts);
    return boundinfo;
 }