- Notifications
You must be signed in to change notification settings - Fork28
Commit4fbdfbf
committed
Update:
< * Use bitmaps to combine existing indexes [performance]> * Allow the creation of bitmap indexes which can be quickly combined> with other bitmap indexes255,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 parentc21214f commit4fbdfbf
1 file changed
+8
-4
lines changedLines changed: 8 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
253 | 253 |
| |
254 | 254 |
| |
255 | 255 |
| |
256 |
| - | |
| 256 | + | |
257 | 257 |
| |
258 | 258 |
| |
259 |
| - | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
260 | 262 |
| |
261 | 263 |
| |
262 | 264 |
| |
263 |
| - | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
264 | 268 |
| |
265 | 269 |
| |
266 | 270 |
| |
|
0 commit comments
Comments
(0)