Skip to content

Commit 0d1e1f0

Browse files
committed
Fix typos in comments.
Etsuro Fujita Discussion: http://postgr.es/m/00e88999-684d-d79a-70e4-908c937a0126@lab.ntt.co.jp
1 parent 460c89f commit 0d1e1f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/catalog/partition.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ RelationGetPartitionQual(Relation rel)
988988
* Returns information necessary to route tuples down a partition tree
989989
*
990990
* All the partitions will be locked with lockmode, unless it is NoLock.
991-
* A list of the OIDs of all the leaf partition of rel is returned in
991+
* A list of the OIDs of all the leaf partitions of rel is returned in
992992
* *leaf_part_oids.
993993
*/
994994
PartitionDispatch *
@@ -1012,9 +1012,9 @@ RelationGetPartitionDispatchInfo(Relation rel, int lockmode,
10121012
*
10131013
* Cannot use find_all_inheritors() here, because then the order of OIDs
10141014
* in parted_rels list would be unknown, which does not help, because we
1015-
* we assign indexes within individual PartitionDispatch in an order that
1016-
* is predetermined (determined by the order of OIDs in individual
1017-
* partition descriptors).
1015+
* assign indexes within individual PartitionDispatch in an order that is
1016+
* predetermined (determined by the order of OIDs in individual partition
1017+
* descriptors).
10181018
*/
10191019
*num_parted = 1;
10201020
parted_rels = list_make1(rel);

0 commit comments

Comments
 (0)