diff options
author | Dwight <dmerriman@gmail.com> | 2007-11-26 16:43:28 -0500 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2007-11-26 16:43:28 -0500 |
commit | eb4ffe30f868fae9bb87353148cbc1d5a9c780ee (patch) | |
tree | 642fe19a17ee4373136a50ad60201d778f4a0d0a | |
parent | 178091b0ad390bf5171d1702e5ab87062440df5f (diff) | |
download | mongo-eb4ffe30f868fae9bb87353148cbc1d5a9c780ee.tar.gz |
getmore
-rw-r--r--[-rwxr-xr-x] | bin/start.tcsh | 0 | ||||
-rw-r--r-- | db/db.cpp | 2 | ||||
-rw-r--r-- | db/query.cpp | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/bin/start.tcsh b/bin/start.tcsh index 476063b880f..476063b880f 100755..100644 --- a/bin/start.tcsh +++ b/bin/start.tcsh diff --git a/db/db.cpp b/db/db.cpp index 0342ef085af..eb50b5c21a0 100644 --- a/db/db.cpp +++ b/db/db.cpp @@ -266,7 +266,7 @@ void run() { receivedDelete(m);
}
else if( m.data->operation == dbGetMore ) {
- cout << "dbGetMore: not implemented yet!" << endl;
+ receivedGetMore(m);
}
else {
cout << " operation isn't supported ?" << endl;
diff --git a/db/query.cpp b/db/query.cpp index 7f14e20ca38..92d43638375 100644 --- a/db/query.cpp +++ b/db/query.cpp @@ -309,8 +309,8 @@ done: }
}
}
+ c->advance();
}
- c->advance();
}
QueryResult *qr = (QueryResult *) b.buf();
|