summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/querytests.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-04-20 18:51:35 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-04-29 11:55:38 -0400
commitda31be34dc6664d76868543e9ccdaecad4f504c6 (patch)
treecca380d1419bffe8371f24f73fca169a042b87e1 /src/mongo/dbtests/querytests.cpp
parentbdbe140e3cc502a58d50a8ec472bd9c05cf12e4f (diff)
downloadmongo-da31be34dc6664d76868543e9ccdaecad4f504c6.tar.gz
SERVER-18131 Clean up LastError.
Makes LastError a decoration on Client. Removes behavior that was specific to the dbKillCursors wire protocol message into the processing for that message, and out of last error. Simplifies lifetime of LastError. It always exists on Clients, so there's no checking for its existence, and no passing it around through parts of the networking library.
Diffstat (limited to 'src/mongo/dbtests/querytests.cpp')
-rw-r--r--src/mongo/dbtests/querytests.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mongo/dbtests/querytests.cpp b/src/mongo/dbtests/querytests.cpp
index bab0f1e22fe..5aac0a989e5 100644
--- a/src/mongo/dbtests/querytests.cpp
+++ b/src/mongo/dbtests/querytests.cpp
@@ -216,13 +216,11 @@ namespace QueryTests {
class ClientBase {
public:
ClientBase() : _client(&_txn) {
- _prevError = mongo::lastError._get( false );
- mongo::lastError.release();
- mongo::lastError.reset( new LastError() );
+ mongo::LastError::get(_txn.getClient()).reset();
_txn.getCurOp()->reset();
}
virtual ~ClientBase() {
- mongo::lastError.reset( _prevError );
+ mongo::LastError::get(_txn.getClient()).reset();
}
protected:
@@ -238,9 +236,6 @@ namespace QueryTests {
OperationContextImpl _txn;
DBDirectClient _client;
-
- private:
- LastError* _prevError;
};
class BoundedKey : public ClientBase {