From e3948d4d8817579b6b03618e64e1b9e8cc2ef086 Mon Sep 17 00:00:00 2001 From: Martin Neupauer Date: Thu, 11 Jun 2020 08:07:39 +0100 Subject: SERVER-48228 Move slot-based execution engine and supporting changes into the master branch This is an initial commit for the slot-based execution engine (SBE) which contains: * Implementation of the core slot-based engine. * The SBE stage builder, which is responsible for translating a QuerySolution tree into an SBE plan. * Other changes necessary for integration with the find command. Co-authored-by: Anton Korshunov Co-authored-by: Justin Seyster Co-authored-by: David Storch --- src/mongo/db/s/split_chunk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/db/s/split_chunk.cpp') diff --git a/src/mongo/db/s/split_chunk.cpp b/src/mongo/db/s/split_chunk.cpp index 8d63add9683..847f43d7111 100644 --- a/src/mongo/db/s/split_chunk.cpp +++ b/src/mongo/db/s/split_chunk.cpp @@ -71,7 +71,7 @@ bool checkIfSingleDoc(OperationContext* opCtx, newmin, newmax, BoundInclusion::kIncludeStartKeyOnly, - PlanExecutor::NO_YIELD); + PlanYieldPolicy::YieldPolicy::NO_YIELD); // check if exactly one document found PlanExecutor::ExecState state; BSONObj obj; -- cgit v1.2.1