diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-04 23:19:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-04 23:19:53 +0000 |
commit | c45e4925ab585429c74df6a356c6bf0ad4bc65a8 (patch) | |
tree | d2679e8d6f26baf8cbc7795dde8af92ee86c51e4 /src | |
parent | ae12e25263d6c1c78fe81bc23828eab0563e9d52 (diff) | |
download | postgresql-c45e4925ab585429c74df6a356c6bf0ad4bc65a8.tar.gz postgresql-c45e4925ab585429c74df6a356c6bf0ad4bc65a8.zip |
Optimizer cleanups.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/optimizer/path/prune.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/prune.c b/src/backend/optimizer/path/prune.c index f3194605c78..b6265836c91 100644 --- a/src/backend/optimizer/path/prune.c +++ b/src/backend/optimizer/path/prune.c @@ -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); } |