Skip to content

Commit

Permalink
Clear cache for consistent coverage and drop redundant virtual modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTF committed Oct 15, 2024
1 parent 52c76bc commit cade5b9
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/Union.h
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ class Union : public Operation {
// A similar timeout-checking replacement for `std::fill`.
void fillChunked(auto beg, auto end, const auto& value) const;

virtual ProtoResult computeResult(bool requestLaziness) override;
ProtoResult computeResult(bool requestLaziness) override;

VariableToColumnMap computeVariableToColumnMap() const override;

1 change: 1 addition & 0 deletions test/UnionTest.cpp
Original file line number Diff line number Diff line change
@@ -79,6 +79,7 @@ TEST(UnionTest, computeUnionLazy) {
ad_utility::source_location::current()) {
auto l = generateLocationTrace(loc);
auto* qec = ad_utility::testing::getQec();
qec->getQueryTreeCache().clearAll();
IdTable left = makeIdTableFromVector({{V(1)}, {V(2)}, {V(3)}});
auto leftT = ad_utility::makeExecutionTree<ValuesForTesting>(
qec, std::move(left), Vars{Variable{"?x"}}, false,

0 comments on commit cade5b9

Please sign in to comment.