diff options
author | Andy Schwerin <schwerin@mongodb.com> | 2015-03-26 16:40:28 -0400 |
---|---|---|
committer | Andy Schwerin <schwerin@mongodb.com> | 2015-03-27 10:25:09 -0400 |
commit | 92593d1af174244ba5560be29908b4f729fec78c (patch) | |
tree | d98ba6959b2f91da14aad46794248d2323c7ce08 /src/mongo/dbtests/pdfiletests.cpp | |
parent | 18a3b8528833a478d5a207bfe5fcb8e35673ee8f (diff) | |
download | mongo-92593d1af174244ba5560be29908b4f729fec78c.tar.gz |
SERVER-17758 Move AutoGet* and Client::*Context to their own file.
The new file is mongo/db/db_raii.h. Also, Client::Context is now OldClientContext and
Client::WriteContext is OldClientWriteContext.
Diffstat (limited to 'src/mongo/dbtests/pdfiletests.cpp')
-rw-r--r-- | src/mongo/dbtests/pdfiletests.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/dbtests/pdfiletests.cpp b/src/mongo/dbtests/pdfiletests.cpp index fbf557e9f40..28f777063ed 100644 --- a/src/mongo/dbtests/pdfiletests.cpp +++ b/src/mongo/dbtests/pdfiletests.cpp @@ -31,11 +31,12 @@ #include "mongo/platform/basic.h" +#include "mongo/db/catalog/collection.h" #include "mongo/db/db.h" +#include "mongo/db/db_raii.h" #include "mongo/db/json.h" -#include "mongo/db/ops/insert.h" -#include "mongo/db/catalog/collection.h" #include "mongo/db/operation_context_impl.h" +#include "mongo/db/ops/insert.h" #include "mongo/dbtests/dbtests.h" namespace PdfileTests { @@ -68,7 +69,7 @@ namespace PdfileTests { OperationContextImpl _txn; ScopedTransaction _scopedXact; Lock::GlobalWrite _lk; - Client::Context _context; + OldClientContext _context; }; class InsertNoId : public Base { |