diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-11-27 16:00:51 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-11-27 16:00:51 +0900 |
commit | 474cd0931b758f4ee353fbc8cfc38a762b997be1 (patch) | |
tree | 984d37f7c93161c757a25cb9b6786d80c2c63148 /src | |
parent | 1ad0df67c7904ff64166d7a453c53943f069ee52 (diff) |
Fix typo in comment.
Diffstat (limited to 'src')
-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 c8e94ab9fe1..a6f6084b84a 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -672,7 +672,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 |