Removes the specified tuple from the file on behalf of the specified 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 delete. This tuple should be upd
(TransactionId tid, Tuple t)
| 62 | * of the file |
| 63 | */ |
| 64 | List<Page> deleteTuple(TransactionId tid, Tuple t) |
| 65 | throws DbException, IOException, TransactionAbortedException; |
| 66 | |
| 67 | /** |
no outgoing calls