| 18 | explicit PyDatabaseTransaction(Database* database) : database_(database) {} |
| 19 | |
| 20 | void Enter() { |
| 21 | transaction_ = std::make_unique<DatabaseTransaction>(database_); |
| 22 | } |
| 23 | |
| 24 | void Exit(const py::args&) { transaction_.reset(); } |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected