diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-02-17 00:52:53 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-02-17 00:52:53 +0000 |
commit | a536ed53bca40cb0d199824e358a86fcfd5db7f2 (patch) | |
tree | c61f5d7535a780bc7cb709ea84e0450c36f2e9a8 /src/include/optimizer/pathnode.h | |
parent | d372bba02d946b93d928ffe06682f23ff33b9277 (diff) | |
download | postgresql-a536ed53bca40cb0d199824e358a86fcfd5db7f2.tar.gz postgresql-a536ed53bca40cb0d199824e358a86fcfd5db7f2.zip |
Make use of statistics on index expressions. There are still some
corner cases that could stand improvement, but it does all the basic
stuff. A byproduct is that the selectivity routines are no longer
constrained to working on simple Vars; we might in future be able to
improve the behavior for subexpressions that don't match indexes.
Diffstat (limited to 'src/include/optimizer/pathnode.h')
-rw-r--r-- | src/include/optimizer/pathnode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/optimizer/pathnode.h b/src/include/optimizer/pathnode.h index 379e2ba7a5e..3186b8d1c1f 100644 --- a/src/include/optimizer/pathnode.h +++ b/src/include/optimizer/pathnode.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/optimizer/pathnode.h,v 1.53 2003/11/29 22:41:07 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/optimizer/pathnode.h,v 1.54 2004/02/17 00:52:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -77,6 +77,7 @@ extern HashPath *create_hashjoin_path(Query *root, extern void build_base_rel(Query *root, int relid); extern RelOptInfo *build_other_rel(Query *root, int relid); extern RelOptInfo *find_base_rel(Query *root, int relid); +extern RelOptInfo *find_join_rel(Query *root, Relids relids); extern RelOptInfo *build_join_rel(Query *root, Relids joinrelids, RelOptInfo *outer_rel, |