(connection: DatabaseConnection)
| 40 | await connection.executeQuery(CompiledQuery.raw("begin")); |
| 41 | }, |
| 42 | async commitTransaction(connection: DatabaseConnection) { |
| 43 | await connection.executeQuery(CompiledQuery.raw("commit")); |
| 44 | }, |
| 45 | async rollbackTransaction(connection: DatabaseConnection) { |
| 46 | await connection.executeQuery(CompiledQuery.raw("rollback")); |
| 47 | }, |
nothing calls this directly
no test coverage detected