diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-06 17:29:30 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-06 17:29:30 +0000 |
commit | a55376084507e8ae8b1051d259264b4c12778764 (patch) | |
tree | 73d8c6b345e65c7505b4b70fb987a45d90508e48 /src/backend/optimizer/util/pathnode.c | |
parent | ead64f317be6eae7cdff9074659f8140aea3c4d5 (diff) |
Optimizer cleanup.
Diffstat (limited to 'src/backend/optimizer/util/pathnode.c')
-rw-r--r-- | src/backend/optimizer/util/pathnode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index e30421c3747..2b6aff284dd 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.18 1999/02/04 19:20:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/util/pathnode.c,v 1.19 1999/02/06 17:29:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -165,8 +165,8 @@ better_path(Path *new_path, List *unique_paths, bool *noOther) path = (Path *) lfirst(temp); if (samekeys(path->keys, new_path->keys) && - equal_path_path_ordering(&path->p_ordering, - &new_path->p_ordering)) + equal_path_ordering(&path->p_ordering, + &new_path->p_ordering)) { old_path = path; break; |