()
| 92 | } |
| 93 | |
| 94 | public void open() throws DbException, TransactionAbortedException { |
| 95 | // some code goes here |
| 96 | DbFile dbFile = Database.getCatalog().getDatabaseFile(this.tableId); |
| 97 | DbFileIterator iterator = dbFile.iterator(this.transactionId); |
| 98 | this.dbFileIterator = iterator; |
| 99 | iterator.open(); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Returns the TupleDesc with field names from the underlying HeapFile, |