diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-06-25 15:45:27 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-06-25 15:45:27 -0400 |
commit | 1094c428ace873154f4272cdb03a8f383e47bfd9 (patch) | |
tree | 326f00cac033c7a929f5074044855aa103ed8256 /client/parallel.cpp | |
parent | 9959f32daab0512b79daa0a00875836d4ae25f97 (diff) | |
download | mongo-1094c428ace873154f4272cdb03a8f383e47bfd9.tar.gz |
fix mongod side filternig with emebdded objects SERVER-1245
Diffstat (limited to 'client/parallel.cpp')
-rw-r--r-- | client/parallel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/parallel.cpp b/client/parallel.cpp index f3e50115b57..c39ecabdae6 100644 --- a/client/parallel.cpp +++ b/client/parallel.cpp @@ -347,7 +347,7 @@ namespace mongo { continue; } - int comp = best.woSortOrder( me , _sortKey ); + int comp = best.woSortOrder( me , _sortKey , true ); if ( comp < 0 ) continue; |