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)
| 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 |
nothing calls this directly
no test coverage detected