(connection: DatabaseConnection)
| 46 | return connection |
| 47 | }, |
| 48 | async beginTransaction(connection: DatabaseConnection) { |
| 49 | await connection.executeQuery(CompiledQuery.raw('begin')) |
| 50 | }, |
| 51 | async commitTransaction(connection: DatabaseConnection) { |
| 52 | await connection.executeQuery(CompiledQuery.raw('commit')) |
| 53 | }, |
nothing calls this directly
no test coverage detected