diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-10-05 19:48:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-10-05 19:48:34 +0000 |
commit | b32685a999a3d60dbf1f5443ceb2d39d7464d1df (patch) | |
tree | 4f088ae0917d6b431f1b44b52cdc48c921214e74 /src/backend/optimizer/util | |
parent | 05e3d0ee8666b74f11ffad16f46e372459d6e53e (diff) | |
download | postgresql-b32685a999a3d60dbf1f5443ceb2d39d7464d1df.tar.gz postgresql-b32685a999a3d60dbf1f5443ceb2d39d7464d1df.zip |
Add proofreader's changes to docs.
Fix misspelling of disbursion to dispersion.
Diffstat (limited to 'src/backend/optimizer/util')
-rw-r--r-- | src/backend/optimizer/util/pathnode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index 737b4db2d3d..36843f834da 100644 --- a/src/backend/optimizer/util/pathnode.c +++ b/src/backend/optimizer/util/pathnode.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.66 2000/09/29 18:21:23 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.67 2000/10/05 19:48:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -522,7 +522,7 @@ create_mergejoin_path(RelOptInfo *joinrel, * 'restrict_clauses' are the RestrictInfo nodes to apply at the join * 'hashclauses' is a list of the hash join clause (always a 1-element list) * (this should be a subset of the restrict_clauses list) - * 'innerdisbursion' is an estimate of the disbursion of the inner hash key + * 'innerdispersion' is an estimate of the dispersion of the inner hash key * */ HashPath * @@ -532,7 +532,7 @@ create_hashjoin_path(RelOptInfo *joinrel, Path *inner_path, List *restrict_clauses, List *hashclauses, - Selectivity innerdisbursion) + Selectivity innerdispersion) { HashPath *pathnode = makeNode(HashPath); @@ -550,7 +550,7 @@ create_hashjoin_path(RelOptInfo *joinrel, outer_path, inner_path, restrict_clauses, - innerdisbursion); + innerdispersion); return pathnode; } |