1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Optimizer cleanup.

This commit is contained in:
Bruce Momjian
1999-02-05 19:59:31 +00:00
parent d5db88142c
commit 6e2edaf4b8
10 changed files with 28 additions and 28 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.21 1999/02/05 03:43:05 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.22 1999/02/05 19:59:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -64,9 +64,9 @@ prune_joinrel(RelOptInfo *rel, List *other_rels)
List *r1 = NIL;
List *result = NIL;
foreach(r1, other_rels)
foreach(i, other_rels)
{
RelOptInfo *other_rel = (RelOptInfo *) lfirst(r1);
RelOptInfo *other_rel = (RelOptInfo *) lfirst(i);
if (same(rel->relids, other_rel->relids))
/*