Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4fbdfbf

Browse files
committed
Update:
< * Use bitmaps to combine existing indexes [performance] > * Allow the creation of bitmap indexes which can be quickly combined > with other bitmap indexes 255,257c256,266 < Bitmap indexes allow single indexed columns to be combined to < dynamically create a composite index to match a specific query. Each < index is a bitmap, and the bitmaps are AND'ed or OR'ed to be combined. > Bitmap indexes index single columns that can be combined with other bitmap > indexes to dynamically create a composite index to match a specific query. > Each index is a bitmap, and the bitmaps are bitwise AND'ed or OR'ed to be > combined. Such indexes could be more compact if there are few unique > value. Also, perhaps they can be lossy requiring a scan of the heap page > to find matching rows. > > * Allow non-bitmap indexes to be combined > > Do lookups on non-bitmap indexes and create bitmaps in memory that can be > combined with other indexes.
1 parent c21214f commit 4fbdfbf

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

doc/TODO

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TODO list for PostgreSQL
55
Bracketed items "[]" have more detail.
66

77
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
8-
Last updated: Wed Nov 3 17:20:38 EST 2004
8+
Last updated: Wed Nov 3 22:57:53 EST 2004
99

1010
The most recent version of this document can be viewed at the PostgreSQL web
1111
site, http://www.PostgreSQL.org.
@@ -253,14 +253,18 @@ Indexes
253253
* Allow the creation of bitmap indexes which can be quickly combined
254254
with other bitmap indexes
255255

256-
Bitmap indexes index single columns and can be combined with other bitmap
256+
Bitmap indexes index single columns that can be combined with other bitmap
257257
indexes to dynamically create a composite index to match a specific query.
258258
Each index is a bitmap, and the bitmaps are bitwise AND'ed or OR'ed to be
259-
combined.
259+
combined. Such indexes could be more compact if there are few unique
260+
value. Also, perhaps they can be lossy requiring a scan of the heap page
261+
to find matching rows.
260262

261263
* Allow non-bitmap indexes to be combined
262264

263-
Do loUse bitmaps to combine non-bitmap indexes
265+
Do lookups on non-bitmap indexes and create bitmaps in memory that can be
266+
combined with other indexes.
267+
264268
* Allow use of indexes to search for NULLs
265269

266270
One solution is to create a partial index on an IS NULL expression.

0 commit comments

Comments
 (0)