diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-20 19:02:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-20 19:02:43 +0000 |
commit | 75cccd0ad3184e3fa283f407c765520d3c774c86 (patch) | |
tree | 8e9841e753e158d2cc466a3e12bc30ba2adc8489 /src/backend/optimizer/util/pathnode.c | |
parent | 0ff27333555ad98ad3380b9b15e99e2e6c8bea0d (diff) | |
download | postgresql-75cccd0ad3184e3fa283f407c765520d3c774c86.tar.gz postgresql-75cccd0ad3184e3fa283f407c765520d3c774c86.zip |
pathkeys fixes
Diffstat (limited to 'src/backend/optimizer/util/pathnode.c')
-rw-r--r-- | src/backend/optimizer/util/pathnode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index d94e124193e..7011f053c0a 100644 --- a/src/backend/optimizer/util/pathnode.c +++ b/src/backend/optimizer/util/pathnode.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.38 1999/02/20 18:01:02 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.39 1999/02/20 19:02:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -205,7 +205,7 @@ better_path(Path *new_path, List *unique_paths, bool *is_new) { /* * Replace pathkeys that match exactly, {{1,2}}, {{1,2}} - * Replace pathkeys {{1,2}}with {{1,2,3}}} if the latter is not + * Replace pathkeys {{1,2}} with {{1,2,3}}} if the latter is not * more expensive and replace unordered path with ordered * path if it is not more expensive. Favor sorted keys * over unsorted keys in the same way. |