diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-11-27 16:00:48 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-11-27 16:00:48 +0900 |
commit | c41824c152aba5019cc58b72d6ad5f6761743fab (patch) | |
tree | b6a1eb3b816c301508654c9e055ea16776a383f4 | |
parent | 1d9056f563f3dcef6296e252b60c1d5831e43be6 (diff) |
Fix typo in comment.
-rw-r--r-- | src/backend/optimizer/util/relnode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/util/relnode.c b/src/backend/optimizer/util/relnode.c index 284215a7173..2dc8b16765f 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -967,7 +967,7 @@ build_joinrel_tlist(PlannerInfo *root, RelOptInfo *joinrel, * join paths made from this pair of sub-relations. (It will not need to * be considered further up the join tree.) * - * In many case we will find the same RestrictInfos in both input + * In many cases we will find the same RestrictInfos in both input * relations' joinlists, so be careful to eliminate duplicates. * Pointer equality should be a sufficient test for dups, since all * the various joinlist entries ultimately refer to RestrictInfos |