コード例 #1
0
ファイル: plan_executor.cpp プロジェクト: DieterLutz/mongo
 PlanExecutor::PlanExecutor(WorkingSet* ws, PlanStage* rt, const Collection* collection)
     : _collection(collection),
       _cq(NULL),
       _workingSet(ws),
       _qs(NULL),
       _root(rt),
       _killed(false) {
     initNs();
 }
コード例 #2
0
ファイル: plan_executor.cpp プロジェクト: DieterLutz/mongo
 PlanExecutor::PlanExecutor(WorkingSet* ws, PlanStage* rt, QuerySolution* qs,
                            CanonicalQuery* cq, const Collection* collection)
     : _collection(collection),
       _cq(cq),
       _workingSet(ws),
       _qs(qs),
       _root(rt),
       _killed(false) {
     initNs();
 }
コード例 #3
0
ファイル: plan_executor.cpp プロジェクト: Aaron20141021/mongo
 PlanExecutor::PlanExecutor(OperationContext* opCtx,
                            WorkingSet* ws,
                            PlanStage* rt,
                            const Collection* collection)
     : _opCtx(opCtx),
       _collection(collection),
       _cq(NULL),
       _workingSet(ws),
       _qs(NULL),
       _root(rt),
       _killed(false) {
     initNs();
 }