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

Method BTreeScan

src/java/simpledb/index/BTreeScan.java:51–55  ·  view source on GitHub ↗

Creates a B+ tree scan over the specified table as a part of the specified transaction. @param tid The transaction this scan is running as a part of. @param tableid the table to scan. @param tableAlias the alias of this table (needed by the parser); the returned

(TransactionId tid, int tableid, String tableAlias, IndexPredicate ipred)

Source from the content-addressed store, hash-verified

49 * in sorted order
50 */
51 public BTreeScan(TransactionId tid, int tableid, String tableAlias, IndexPredicate ipred) {
52 this.tid = tid;
53 this.ipred = ipred;
54 reset(tableid,tableAlias);
55 }
56
57 /**
58 * @return

Callers

nothing calls this directly

Calls 3

resetMethod · 0.95
getCatalogMethod · 0.95
getTableNameMethod · 0.45

Tested by

no test coverage detected