summaryrefslogtreecommitdiff
path: root/src/include/access/genam.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-06-13 23:14:49 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-06-13 23:14:49 +0000
commitc186c93148fdfa5a39972331318eda5318ff5eba (patch)
tree31195d72e9b44d701eaa9018e498145f3d46f929 /src/include/access/genam.h
parent077811605e07212139c3df503fdaa081690635ca (diff)
downloadpostgresql-c186c93148fdfa5a39972331318eda5318ff5eba.tar.gz
Change the planner to allow indexscan qualification clauses to use
nonconsecutive columns of a multicolumn index, as per discussion around mid-May (pghackers thread "Best way to scan on-disk bitmaps"). This turns out to require only minimal changes in btree, and so far as I can see none at all in GiST. btcostestimate did need some work, but its original assumption that index selectivity == heap selectivity was quite bogus even before this.
Diffstat (limited to 'src/include/access/genam.h')
-rw-r--r--src/include/access/genam.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/genam.h b/src/include/access/genam.h
index 3ad0a3d4b2..1ed42f8be6 100644
--- a/src/include/access/genam.h
+++ b/src/include/access/genam.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/access/genam.h,v 1.51 2005/05/27 23:31:21 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/genam.h,v 1.52 2005/06/13 23:14:48 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -101,7 +101,6 @@ extern IndexBulkDeleteResult *index_bulk_delete(Relation indexRelation,
extern IndexBulkDeleteResult *index_vacuum_cleanup(Relation indexRelation,
IndexVacuumCleanupInfo *info,
IndexBulkDeleteResult *stats);
-extern RegProcedure index_cost_estimator(Relation indexRelation);
extern RegProcedure index_getprocid(Relation irel, AttrNumber attnum,
uint16 procnum);
extern FmgrInfo *index_getprocinfo(Relation irel, AttrNumber attnum,