示例#1
0
 bool ReorderBuildStrategy::handleMatch( bool &orderedMatch ) {
     orderedMatch = false;
     if ( _cursor->getsetdup( _cursor->currLoc() ) ) {
         return false;
     }
     _handleMatchNoDedup();
     return true;
 }
示例#2
0
文件: query.cpp 项目: enlyn/mongo
 bool ReorderBuildStrategy::handleMatch( ResultDetails* resultDetails ) {
     if ( _cursor->getsetdup( _cursor->currLoc() ) ) {
         return false;
     }
     _handleMatchNoDedup( resultDetails );
     resultDetails->match = true;
     return true;
 }
示例#3
0
文件: query.cpp 项目: masa0114/mongo
 bool ReorderBuildStrategy::handleMatch() {
     if ( _cursor->getsetdup( _cursor->currLoc() ) ) {
         return false;
     }
     return _handleMatchNoDedup();
 }