diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 06:27:09 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 06:27:09 +0000 |
commit | 2dca8973feb4bd089b6654d4cc67b0542fdfdbb2 (patch) | |
tree | 0bfb1e55125698412915c622887bb147914e5f92 /src/backend/optimizer/path/prune.c | |
parent | 10ace1fac8d9f2aa887a1095340e218430928fce (diff) |
Final round before bed...more tomorrow...
Diffstat (limited to 'src/backend/optimizer/path/prune.c')
-rw-r--r-- | src/backend/optimizer/path/prune.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/backend/optimizer/path/prune.c b/src/backend/optimizer/path/prune.c index ba8880daa26..b57a0dff48c 100644 --- a/src/backend/optimizer/path/prune.c +++ b/src/backend/optimizer/path/prune.c @@ -7,21 +7,17 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.39 1999/05/25 22:41:33 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/prune.c,v 1.39.2.1 1999/08/02 06:26:59 scrappy Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" -#include "nodes/pg_list.h" -#include "nodes/relation.h" -#include "optimizer/internal.h" #include "optimizer/cost.h" -#include "optimizer/paths.h" #include "optimizer/pathnode.h" +#include "optimizer/paths.h" -#include "utils/elog.h" static List *merge_rel_with_same_relids(RelOptInfo *rel, Relids unjoined_relids); |