(TransactionId tid)
| 175 | |
| 176 | // see DbFile.java for javadocs |
| 177 | public DbFileIterator iterator(TransactionId tid) { |
| 178 | // some code goes here |
| 179 | return new HeapFileIterator(tid,Permissions.READ_ONLY); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * 这个迭代器的作用是用来遍历所有的tuple,但是不要将所有tuple一次性放入内存,而是一页一页的读和遍历 |
no outgoing calls