aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2019-08-07 19:05:18 +0900
committerEtsuro Fujita <efujita@postgresql.org>2019-08-07 19:05:18 +0900
commitca8a57b6369322b5ffd915c130da5e902d7f970c (patch)
tree6357d9cad73f92efb8f1c2e4b57e724ef51235ac
parentf8d30182b121f0c38695498d6d386ffa96858e76 (diff)
downloadpostgresql-ca8a57b6369322b5ffd915c130da5e902d7f970c.tar.gz
postgresql-ca8a57b6369322b5ffd915c130da5e902d7f970c.zip
Fix typos in comments.
-rw-r--r--src/backend/partitioning/partbounds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/partitioning/partbounds.c b/src/backend/partitioning/partbounds.c
index 13d576c3794..b72d5e8eedb 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;
}