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

WIP: cleanup after test_transaction

parent 556fa91d
No related branches found
No related tags found
1 merge request!5F update
Pipeline #11450 failed
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
......@@ -41,7 +41,18 @@ protected:
void SetUp() override {}
void TearDown() override {
// TODO(tf): delete all created entities
const auto &connection =
caosdb::connection::ConnectionManager::GetDefaultConnection();
auto query_transaction(connection->CreateTransaction());
query_transaction->Query("FIND ENTITY WITH id > 99");
query_transaction->Execute();
if (query_transaction->GetResultSet().Size() > 0) {
for (const Entity &entity : query_transaction->GetResultSet()) {
auto delete_transaction(connection->CreateTransaction());
delete_transaction->DeleteById(entity.GetId());
delete_transaction->Execute();
}
}
}
};
......
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