| 98 | } |
| 99 | |
| 100 | std::unique_ptr<QueryResult> Connection::executeWithParamsWithID( |
| 101 | PreparedStatement* preparedStatement, |
| 102 | std::unordered_map<std::string, std::unique_ptr<Value>> inputParams, uint64_t queryID) { |
| 103 | dbLifeCycleManager->checkDatabaseClosedOrThrow(); |
| 104 | auto queryResult = |
| 105 | clientContext->executeWithParams(preparedStatement, std::move(inputParams), queryID); |
| 106 | queryResult->setDBLifeCycleManager(dbLifeCycleManager); |
| 107 | return queryResult; |
| 108 | } |
| 109 | |
| 110 | void Connection::addScalarFunction(std::string name, function::function_set definitions) { |
| 111 | dbLifeCycleManager->checkDatabaseClosedOrThrow(); |
nothing calls this directly
no test coverage detected