MCPcopy Create free account
hub / github.com/1345414527/MIT6.830 / numPages

Method numPages

src/java/simpledb/storage/HeapFile.java:121–124  ·  view source on GitHub ↗

Returns the number of pages in this HeapFile.

()

Source from the content-addressed store, hash-verified

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)

Callers 4

insertTupleMethod · 0.95
TableStatsMethod · 0.95
nextPageMethod · 0.45

Calls 1

getPageSizeMethod · 0.95

Tested by 1