| 195 | } |
| 196 | |
| 197 | RunResult RunContext::Run() |
| 198 | { |
| 199 | mNeedsReset = true; |
| 200 | return RunResult { mStatement, std::move(mErrors) }; |
| 201 | } |
| 202 | |
| 203 | RunResult::RunResult(StatementHandlePtr stmt, std::vector<Error> errors) noexcept |
| 204 | : mStatement { std::move(stmt) } |
no test coverage detected