From 04578a91800751ddac902be592dec35d9fb6daf1 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 30 Jul 1999 04:07:25 +0000 Subject: Further cleanups of indexqual processing: simplify control logic in indxpath.c, avoid generation of redundant indexscan paths for the same relation and index. --- src/include/optimizer/pathnode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/optimizer') diff --git a/src/include/optimizer/pathnode.h b/src/include/optimizer/pathnode.h index 0860ab7f18f..b38284ccbe1 100644 --- a/src/include/optimizer/pathnode.h +++ b/src/include/optimizer/pathnode.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pathnode.h,v 1.18 1999/07/15 15:21:22 momjian Exp $ + * $Id: pathnode.h,v 1.19 1999/07/30 04:07:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -24,7 +24,7 @@ extern List *add_pathlist(RelOptInfo *parent_rel, List *unique_paths, List *new_paths); extern Path *create_seqscan_path(RelOptInfo *rel); extern IndexPath *create_index_path(Query *root, RelOptInfo *rel, RelOptInfo *index, - List *restriction_clauses, bool is_join_scan); + List *restriction_clauses); extern NestPath *create_nestloop_path(RelOptInfo *joinrel, RelOptInfo *outer_rel, Path *outer_path, Path *inner_path, List *pathkeys); extern MergePath *create_mergejoin_path(RelOptInfo *joinrel, int outersize, -- cgit v1.2.3