summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/query_stage_multiplan.cpp
diff options
context:
space:
mode:
authorDavid Storch <david.storch@mongodb.com>2020-09-11 09:51:14 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-09-14 21:10:40 +0000
commitfcad026e0d27016c7f79ee70b5a80029e4f2e89f (patch)
tree8514ac2a3dbffb31bce7cbc4267fac8110e2b7ab /src/mongo/dbtests/query_stage_multiplan.cpp
parent5a407eb9c6c11f6da9778f08d8baf5d485c7d666 (diff)
downloadmongo-fcad026e0d27016c7f79ee70b5a80029e4f2e89f.tar.gz
SERVER-50726 Add unique id to QuerySolutionNode
This will be useful later for implementing explain output for the slot-based execution engine.
Diffstat (limited to 'src/mongo/dbtests/query_stage_multiplan.cpp')
-rw-r--r--src/mongo/dbtests/query_stage_multiplan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/dbtests/query_stage_multiplan.cpp b/src/mongo/dbtests/query_stage_multiplan.cpp
index 4729de695ea..3d77785ac5c 100644
--- a/src/mongo/dbtests/query_stage_multiplan.cpp
+++ b/src/mongo/dbtests/query_stage_multiplan.cpp
@@ -422,7 +422,7 @@ TEST_F(QueryStageMultiPlanTest, MPSBackupPlan) {
"{fetch: {node: {andSorted: {nodes: ["
"{ixscan: {filter: null, pattern: {a:1}}},"
"{ixscan: {filter: null, pattern: {b:1}}}]}}}}}}",
- soln->root.get()));
+ soln->root()));
// Get the resulting document.
PlanStage::StageState state = PlanStage::NEED_TIME;
@@ -446,7 +446,7 @@ TEST_F(QueryStageMultiPlanTest, MPSBackupPlan) {
"{fetch: {node: {andSorted: {nodes: ["
"{ixscan: {filter: null, pattern: {a:1}}},"
"{ixscan: {filter: null, pattern: {b:1}}}]}}}}}}",
- soln->root.get()));
+ soln->root()));
// Restore index intersection force parameter.
internalQueryForceIntersectionPlans.store(forceIxisectOldValue);