(connection: DatabaseConnection)
| 49 | await connection.executeQuery(CompiledQuery.raw('begin')) |
| 50 | }, |
| 51 | async commitTransaction(connection: DatabaseConnection) { |
| 52 | await connection.executeQuery(CompiledQuery.raw('commit')) |
| 53 | }, |
| 54 | async rollbackTransaction(connection: DatabaseConnection) { |
| 55 | await connection.executeQuery(CompiledQuery.raw('rollback')) |
| 56 | }, |
nothing calls this directly
no test coverage detected