diff options
author | Etsuro Fujita | 2021-10-07 08:45:00 +0000 |
---|---|---|
committer | Etsuro Fujita | 2021-10-07 08:45:00 +0000 |
commit | 700c73312841bd1a89263f238556ce8d8d916258 (patch) | |
tree | a82b1204a0e962f3aab1f7c497fe87fcac2a472a | |
parent | 05c4248ad1bf0c2721ce9445f6908da9ece36ff8 (diff) |
Add missing word to comment in joinrels.c.
Author: Amit Langote
Backpatch-through: 13
Discussion: https://postgr.es/m/CA%2BHiwqGQNbtamQ_9DU3osR1XiWR4wxWFZurPmN6zgbdSZDeWmw%40mail.gmail.com
-rw-r--r-- | src/backend/optimizer/path/joinrels.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/joinrels.c b/src/backend/optimizer/path/joinrels.c index 8b69870cf4..16cc9269ef 100644 --- a/src/backend/optimizer/path/joinrels.c +++ b/src/backend/optimizer/path/joinrels.c @@ -1619,9 +1619,9 @@ compute_partition_bounds(PlannerInfo *root, RelOptInfo *rel1, /* * See if the partition bounds for inputs are exactly the same, in - * which case we don't need to work hard: the join rel have the same - * partition bounds as inputs, and the partitions with the same - * cardinal positions form the pairs. + * which case we don't need to work hard: the join rel will have the + * same partition bounds as inputs, and the partitions with the same + * cardinal positions will form the pairs. * * Note: even in cases where one or both inputs have merged bounds, it * would be possible for both the bounds to be exactly the same, but |