| 198 | } |
| 199 | |
| 200 | Transaction Connection::BeginTransaction(std::string name) |
| 201 | { |
| 202 | return Transaction(*this, TransactionHandler, std::move(name)); |
| 203 | } |
| 204 | |
| 205 | Error Connection::TransactionHandler( |
| 206 | Connection& connection, Transaction::TransactionOperation operation, |
no test coverage detected