summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuoxin Xu <ruoxin.xu@mongodb.com>2022-04-11 10:44:17 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-11 11:18:47 +0000
commit591f49a64e96cea68bf3501320de31c51c31f412 (patch)
treebf724418bc4cc44c54bbfb47edd2a3f39b5b8d8f
parent0a80e535f22f025ea70ba00348c2e51fc0882495 (diff)
downloadmongo-r6.0.0-alpha0.tar.gz
SERVER-65372 Copy indexBoundsEvaluationInfos when PlanStageData is copiedr6.0.0-alpha0
-rw-r--r--src/mongo/db/query/sbe_stage_builder.h1
1 files changed, 1 insertions, 0 deletions
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;
}
};