get the specified tuples from the file based on its IndexPredicate value on behalf of the specified transaction. This method will acquire a read lock on the affected pages of the file, and may block until the lock can be acquired. @param tid - the transaction id @param ipred - the index predicate v
(TransactionId tid, IndexPredicate ipred)
| 1288 | * @return an iterator for the filtered tuples |
| 1289 | */ |
| 1290 | public DbFileIterator indexIterator(TransactionId tid, IndexPredicate ipred) { |
| 1291 | return new BTreeSearchIterator(this, tid, ipred); |
| 1292 | } |
| 1293 | |
| 1294 | /** |
| 1295 | * Get an iterator for all tuples in this B+ tree file in sorted order. This method |
no outgoing calls