diff options
author | Ian Boros <ian.boros@mongodb.com> | 2020-01-30 13:10:55 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-02-28 22:16:41 +0000 |
commit | cfa5c05fa1855fb1a04cb3a6e2eb10a7e82bf726 (patch) | |
tree | 7ab1e1ce8e2edd6837952c131fe14d43a0633235 /src/mongo/db/exec/idhack.h | |
parent | 793ae32c597f197b6445750aa9bfdaabc206132d (diff) | |
download | mongo-cfa5c05fa1855fb1a04cb3a6e2eb10a7e82bf726.tar.gz |
SERVER-45406 Plumb ExpressionContext through PlanStage
This patch includes also moves ownership of the collator to the ExpressionContext.
Diffstat (limited to 'src/mongo/db/exec/idhack.h')
-rw-r--r-- | src/mongo/db/exec/idhack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/idhack.h b/src/mongo/db/exec/idhack.h index 5a56f67b328..5c2ac9f894a 100644 --- a/src/mongo/db/exec/idhack.h +++ b/src/mongo/db/exec/idhack.h @@ -48,12 +48,12 @@ class RecordCursor; class IDHackStage final : public RequiresIndexStage { public: /** Takes ownership of all the arguments -collection. */ - IDHackStage(OperationContext* opCtx, + IDHackStage(ExpressionContext* expCtx, CanonicalQuery* query, WorkingSet* ws, const IndexDescriptor* descriptor); - IDHackStage(OperationContext* opCtx, + IDHackStage(ExpressionContext* expCtx, const BSONObj& key, WorkingSet* ws, const IndexDescriptor* descriptor); |