Skip to content

Commit 30f7b81

Browse files
committed
Merge branch 'devel' of github.com:arangodb/arangodb into feature/supervised-aql-value
2 parents 1afc826 + 337baba commit 30f7b81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arangod/Graph/PathManagement/PathValidator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ auto PathValidator<ProviderType, PathStore, vertexUniqueness, edgeUniqueness>::
282282
return ValidationResult{ValidationResult::Type::FILTER_AND_PRUNE};
283283
}
284284

285-
auto vertexBuilder = transaction::BuilderLeaser(_provider.trx());
286-
auto edgeBuilder = transaction::BuilderLeaser(_provider.trx());
285+
auto vertexBuilder = std::make_unique<VPackBuilder>();
286+
auto edgeBuilder = std::make_unique<VPackBuilder>();
287287

288288
// evaluate if vertex needs to be pruned
289289
ValidationResult res{ValidationResult::Type::TAKE};

0 commit comments

Comments
 (0)