Returns the number of pages in this HeapFile.
()
| 119 | * Returns the number of pages in this HeapFile. |
| 120 | */ |
| 121 | public int numPages() { |
| 122 | // some code goes here |
| 123 | return (int)file.length()/BufferPool.getPageSize(); |
| 124 | } |
| 125 | |
| 126 | // see DbFile.java for javadocs |
| 127 | public List<Page> insertTuple(TransactionId tid, Tuple t) |