(connection: DatabaseConnection)
| 52 | await connection.executeQuery(CompiledQuery.raw('commit')) |
| 53 | }, |
| 54 | async rollbackTransaction(connection: DatabaseConnection) { |
| 55 | await connection.executeQuery(CompiledQuery.raw('rollback')) |
| 56 | }, |
| 57 | async releaseConnection() { |
| 58 | waiter.unlock() |
| 59 | }, |
nothing calls this directly
no test coverage detected