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

Merge branch 'f-error-handling' into f-insert

parents 7f6b77f0 a120c8b1
No related branches found
No related tags found
1 merge request!4ENH: Allow insertion and deletion of single entities
Pipeline #10914 failed
......@@ -205,14 +205,26 @@ auto Transaction::WaitForIt() const noexcept -> TransactionStatus {
switch (responses->wrapped_response_case()) {
case WrappedResponseCase::kRetrieveResponse: {
auto *entity = responses->mutable_retrieve_response()->release_entity();
if (!entity->errors().empty()) {
this->status =
TransactionStatus::TRANSACTION_ERROR("The request returned with errors.");
}
this->result_set = std::make_unique<UniqueResult>(entity);
} break;
case WrappedResponseCase::kInsertResponse: {
auto *insertedIdResponse = responses->mutable_insert_response();
if (!insertedIdResponse->entity_errors().empty()) {
this->status =
TransactionStatus::TRANSACTION_ERROR("The request returned with errors.");
}
this->result_set = std::make_unique<UniqueResult>(insertedIdResponse);
} break;
case WrappedResponseCase::kDeleteResponse: {
auto *deletedIdResponse = responses->mutable_delete_response();
if (!deletedIdResponse->entity_errors().empty()) {
this->status =
TransactionStatus::TRANSACTION_ERROR("The request returned with errors.");
}
this->result_set = std::make_unique<UniqueResult>(deletedIdResponse);
} 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