diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-20 18:01:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-20 18:01:02 +0000 |
commit | 0ff27333555ad98ad3380b9b15e99e2e6c8bea0d (patch) | |
tree | a5ebc7c2c7a3c11537f676d793df6b202f9a4b83 /src/backend/optimizer/path/pathkeys.c | |
parent | 148ec3b1d888f18cd5579c0e31dbc615a941a993 (diff) | |
download | postgresql-0ff27333555ad98ad3380b9b15e99e2e6c8bea0d.tar.gz postgresql-0ff27333555ad98ad3380b9b15e99e2e6c8bea0d.zip |
Update pathkeys comparison function.
Diffstat (limited to 'src/backend/optimizer/path/pathkeys.c')
-rw-r--r-- | src/backend/optimizer/path/pathkeys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/pathkeys.c b/src/backend/optimizer/path/pathkeys.c index e19eeec01ff..f1ea6cbae68 100644 --- a/src/backend/optimizer/path/pathkeys.c +++ b/src/backend/optimizer/path/pathkeys.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.3 1999/02/20 16:32:35 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/pathkeys.c,v 1.4 1999/02/20 18:01:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -54,7 +54,7 @@ static List *new_matching_subkeys(Var *subkey, List *considered_subkeys, * { {tab1.col1, tab2.col1} }. This allows future joins to use either Var * as a pre-sorted key to prevent Mergejoins from having to re-sort the Path. * They are equal, so they are both primary sort keys. This is why pathkeys - * is a List of Lists. + * is a List of Lists. -- bjm */ /**************************************************************************** |