Skip to content
Snippets Groups Projects
Verified Commit c6100390 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: files

parent 6d1f5c8d
No related branches found
No related tags found
1 merge request!11F files
Pipeline #11924 passed
Pipeline: caosdb-cppinttest

#11930

    This commit is part of merge request !11. Comments created here will be created in the context of that merge request.
    ......@@ -36,7 +36,6 @@
    #include <iterator> // for iterator, next
    #include <map> // for map
    #include <memory> // for unique_ptr
    #include <stdexcept> // for out_of_range
    #include <string> // for string
    #include <utility> // for move
    #include <vector> // for vector
    ......
    ......@@ -465,13 +465,14 @@ auto Transaction::WaitForIt() const noexcept -> TransactionStatus {
    this->query_count = retrieve_response->count_result();
    } break;
    case RetrieveResponseCase::kFindResult: {
    std::unique_ptr<Entity> find_result;
    for (auto &entity_response :
    *retrieve_response->mutable_find_result()->mutable_result_set()) {
    result = std::make_unique<Entity>(&entity_response);
    if (result->HasErrors()) {
    find_result = std::make_unique<Entity>(&entity_response);
    if (find_result->HasErrors()) {
    set_error = true;
    }
    entities.push_back(std::move(result));
    entities.push_back(std::move(find_result));
    }
    } break;
    default:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment