diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-04-25 01:30:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-04-25 01:30:14 +0000 |
commit | 5b05185262fd562080ecfd675c7b3634a69851c0 (patch) | |
tree | b9a9ff51a51e72d5076d6828584b30a504335303 /src/backend/utils/adt/selfuncs.c | |
parent | 186655e9a53b62f75e57bcfc218129a6cfe8ea68 (diff) | |
download | postgresql-5b05185262fd562080ecfd675c7b3634a69851c0.tar.gz postgresql-5b05185262fd562080ecfd675c7b3634a69851c0.zip |
Remove support for OR'd indexscans internal to a single IndexScan plan
node, as this behavior is now better done as a bitmap OR indexscan.
This allows considerable simplification in nodeIndexscan.c itself as
well as several planner modules concerned with indexscan plan generation.
Also we can improve the sharing of code between regular and bitmap
indexscans, since they are now working with nigh-identical Plan nodes.
Diffstat (limited to 'src/backend/utils/adt/selfuncs.c')
-rw-r--r-- | src/backend/utils/adt/selfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/selfuncs.c b/src/backend/utils/adt/selfuncs.c index a36cdb76f7a..60c5dffad77 100644 --- a/src/backend/utils/adt/selfuncs.c +++ b/src/backend/utils/adt/selfuncs.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.177 2005/04/14 20:03:26 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.178 2005/04/25 01:30:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -3682,7 +3682,7 @@ pattern_fixed_prefix(Const *patt, Pattern_Type ptype, * Estimate the selectivity of a fixed prefix for a pattern match. * * A fixed prefix "foo" is estimated as the selectivity of the expression - * "variable >= 'foo' AND variable < 'fop'" (see also indxqual.c). + * "variable >= 'foo' AND variable < 'fop'" (see also indxpath.c). * * We use the >= and < operators from the specified btree opclass to do the * estimation. The given variable and Const must be of the associated |