()
| 197 | } |
| 198 | |
| 199 | private evict(): void { |
| 200 | this.db.transactionSync(() => { |
| 201 | this.db.run(`DELETE FROM computerd_exec_log WHERE exec_id = ?`, this.id); |
| 202 | this.db.run( |
| 203 | `UPDATE computerd_exec_meta SET bytes = 0, evicted = 1 WHERE exec_id = ?`, |
| 204 | this.id, |
| 205 | ); |
| 206 | }); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | function materialise(id: string, row: EventRow): ExecEvent { |
no test coverage detected