diff options
author | aaron <aaron@10gen.com> | 2013-03-11 23:57:06 -0700 |
---|---|---|
committer | aaron <aaron@10gen.com> | 2013-03-15 18:41:06 -0700 |
commit | 160886e6bb6eb1916e88c6b17cb4fc039634fa9f (patch) | |
tree | a5562a6ceb7460b07c5c64e17c7adbf27093d699 /src/mongo/dbtests/matchertests.cpp | |
parent | dfb307e5716ad789cc2146048853d3a45077056b (diff) | |
download | mongo-160886e6bb6eb1916e88c6b17cb4fc039634fa9f.tar.gz |
SERVER-8790 Move QueryPlanSelectionPolicy to a new file.
Diffstat (limited to 'src/mongo/dbtests/matchertests.cpp')
-rw-r--r-- | src/mongo/dbtests/matchertests.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/mongo/dbtests/matchertests.cpp b/src/mongo/dbtests/matchertests.cpp index ee199d0fcd1..7370c43036f 100644 --- a/src/mongo/dbtests/matchertests.cpp +++ b/src/mongo/dbtests/matchertests.cpp @@ -18,11 +18,14 @@ */ #include "pch.h" -#include "../util/timer.h" -#include "../db/matcher.h" -#include "../db/json.h" -#include "dbtests.h" -#include "../db/namespace_details.h" + +#include "mongo/db/matcher.h" + +#include "mongo/db/cursor.h" +#include "mongo/db/json.h" +#include "mongo/db/namespace_details.h" +#include "mongo/dbtests/dbtests.h" +#include "mongo/util/timer.h" namespace MatcherTests { |