Inserts the specified tuple to the file on behalf of transaction. This method will acquire a lock on the affected pages of the file, and may block until the lock can be acquired. @param tid The transaction performing the update @param t The tuple to add. This tuple should be updated to reflect tha
(TransactionId tid, Tuple t)
| 46 | * @throws IOException if the needed file can't be read/written |
| 47 | */ |
| 48 | List<Page> insertTuple(TransactionId tid, Tuple t) |
| 49 | throws DbException, IOException, TransactionAbortedException; |
| 50 | |
| 51 | /** |
no outgoing calls