Get an iterator for all tuples in this B+ tree file in sorted order. 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 @return an iterator for all the tuples in this file
(TransactionId tid)
| 1300 | * @return an iterator for all the tuples in this file |
| 1301 | */ |
| 1302 | public DbFileIterator iterator(TransactionId tid) { |
| 1303 | return new BTreeFileIterator(this, tid); |
| 1304 | } |
| 1305 | |
| 1306 | } |
| 1307 |
no outgoing calls