From 591f49a64e96cea68bf3501320de31c51c31f412 Mon Sep 17 00:00:00 2001 From: Ruoxin Xu Date: Mon, 11 Apr 2022 10:44:17 +0000 Subject: SERVER-65372 Copy indexBoundsEvaluationInfos when PlanStageData is copied --- src/mongo/db/query/sbe_stage_builder.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mongo/db/query/sbe_stage_builder.h b/src/mongo/db/query/sbe_stage_builder.h index e7a33a7f411..f7cf484c50f 100644 --- a/src/mongo/db/query/sbe_stage_builder.h +++ b/src/mongo/db/query/sbe_stage_builder.h @@ -378,6 +378,7 @@ private: } inputParamToSlotMap = other.inputParamToSlotMap; variableIdToSlotMap = other.variableIdToSlotMap; + indexBoundsEvaluationInfos = other.indexBoundsEvaluationInfos; } }; -- cgit v1.2.1