]> granicus.if.org Git - postgresql/commitdiff
Fix silly typo in prune_joinrel
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 5 Feb 1999 03:43:05 +0000 (03:43 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 5 Feb 1999 03:43:05 +0000 (03:43 +0000)
src/backend/optimizer/path/prune.c

index b6265836c91d042548ee924169a68a39de274913..4a185c13d50f5f734cdf7268ed58260d74acce8f 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.20 1999/02/04 23:19:53 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.21 1999/02/05 03:43:05 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -61,7 +61,7 @@ prune_joinrels(List *rel_list)
 static List *
 prune_joinrel(RelOptInfo *rel, List *other_rels)
 {
-       List       *i = NIL;
+       List       *r1 = NIL;
        List       *result = NIL;
 
        foreach(r1, other_rels)