summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2007-11-26 16:43:28 -0500
committerDwight <dmerriman@gmail.com>2007-11-26 16:43:28 -0500
commiteb4ffe30f868fae9bb87353148cbc1d5a9c780ee (patch)
tree642fe19a17ee4373136a50ad60201d778f4a0d0a
parent178091b0ad390bf5171d1702e5ab87062440df5f (diff)
downloadmongo-eb4ffe30f868fae9bb87353148cbc1d5a9c780ee.tar.gz
getmore
-rw-r--r--[-rwxr-xr-x]bin/start.tcsh0
-rw-r--r--db/db.cpp2
-rw-r--r--db/query.cpp2
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();