Commit 0d1e1f0e authored by Robert Haas's avatar Robert Haas

Fix typos in comments.

Etsuro Fujita

Discussion: http://postgr.es/m/00e88999-684d-d79a-70e4-908c937a0126@lab.ntt.co.jp
parent 460c89f4
...@@ -988,7 +988,7 @@ RelationGetPartitionQual(Relation rel) ...@@ -988,7 +988,7 @@ RelationGetPartitionQual(Relation rel)
* Returns information necessary to route tuples down a partition tree * Returns information necessary to route tuples down a partition tree
* *
* All the partitions will be locked with lockmode, unless it is NoLock. * All the partitions will be locked with lockmode, unless it is NoLock.
* A list of the OIDs of all the leaf partition of rel is returned in * A list of the OIDs of all the leaf partitions of rel is returned in
* *leaf_part_oids. * *leaf_part_oids.
*/ */
PartitionDispatch * PartitionDispatch *
...@@ -1012,9 +1012,9 @@ RelationGetPartitionDispatchInfo(Relation rel, int lockmode, ...@@ -1012,9 +1012,9 @@ RelationGetPartitionDispatchInfo(Relation rel, int lockmode,
* *
* Cannot use find_all_inheritors() here, because then the order of OIDs * Cannot use find_all_inheritors() here, because then the order of OIDs
* in parted_rels list would be unknown, which does not help, because we * in parted_rels list would be unknown, which does not help, because we
* we assign indexes within individual PartitionDispatch in an order that * assign indexes within individual PartitionDispatch in an order that is
* is predetermined (determined by the order of OIDs in individual * predetermined (determined by the order of OIDs in individual partition
* partition descriptors). * descriptors).
*/ */
*num_parted = 1; *num_parted = 1;
parted_rels = list_make1(rel); parted_rels = list_make1(rel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment