diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-30 04:07:25 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-30 04:07:25 +0000 |
commit | 04578a91800751ddac902be592dec35d9fb6daf1 (patch) | |
tree | fc671926d4ea6d6e56984ea07cff4ee81a2e586b /src/include | |
parent | 037cac7ca644f4a90f12c5e4715b4c51a8268cb3 (diff) | |
download | postgresql-04578a91800751ddac902be592dec35d9fb6daf1.tar.gz postgresql-04578a91800751ddac902be592dec35d9fb6daf1.zip |
Further cleanups of indexqual processing: simplify control
logic in indxpath.c, avoid generation of redundant indexscan paths for the
same relation and index.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/optimizer/pathnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
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, |