diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:17 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-08-07 19:05:17 +0900 |
commit | 68343b4ad75305391b38f4b42734dc07f2fe7ee2 (patch) | |
tree | 39c8892483f599a624cbf1463f118e47a5831fbe | |
parent | 1169fcf129f41762fa8a2d82b52eabd788b3a4de (diff) | |
download | postgresql-68343b4ad75305391b38f4b42734dc07f2fe7ee2.tar.gz postgresql-68343b4ad75305391b38f4b42734dc07f2fe7ee2.zip |
Fix typos in comments.
-rw-r--r-- | src/backend/partitioning/partbounds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/partitioning/partbounds.c b/src/backend/partitioning/partbounds.c index d7ef942973c..5a29b9673b8 100644 --- a/src/backend/partitioning/partbounds.c +++ b/src/backend/partitioning/partbounds.c @@ -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; } |