Optimizer cleanups.
authorBruce Momjian
Thu, 4 Feb 1999 23:19:53 +0000 (23:19 +0000)
committerBruce Momjian
Thu, 4 Feb 1999 23:19:53 +0000 (23:19 +0000)
src/backend/optimizer/path/prune.c

index f3194605c7816ce8db4e25a946af82df0b7161fe..b6265836c91d042548ee924169a68a39de274913 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.19 1999/02/04 19:20:11 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.20 1999/02/04 23:19:53 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -139,7 +139,6 @@ prune_rel_path(RelOptInfo * rel, Path *unorderedpath)
    /* don't prune if not pruneable  -- JMH, 11/23/92 */
    if (unorderedpath != cheapest && rel->pruneable)
    {
-
        rel->unorderedpath = (Path *) NULL;
        rel->pathlist = lremove(unorderedpath, rel->pathlist);
    }