1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Optimizer cleanup.

This commit is contained in:
Bruce Momjian
1999-02-06 17:29:30 +00:00
parent ead64f317b
commit a553760845
6 changed files with 22 additions and 21 deletions

View File

@ -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;