summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/find.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2015-08-06 09:49:02 -0400
committerDavid Storch <david.storch@10gen.com>2015-08-06 17:25:01 -0400
commit1b5b55cb48ff9daca74177b86d336613d207c5d1 (patch)
tree37b170f23d4a3392b130ec533b4e5157f4def0e1 /src/mongo/db/query/find.h
parent58e8b39e9b0bd02e25a98cf09e893f3d2f79401a (diff)
downloadmongo-1b5b55cb48ff9daca74177b86d336613d207c5d1.tar.gz
SERVER-18771 implement getMore command on mongos
Diffstat (limited to 'src/mongo/db/query/find.h')
-rw-r--r--src/mongo/db/query/find.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mongo/db/query/find.h b/src/mongo/db/query/find.h
index 8afaf16b334..562793e7b21 100644
--- a/src/mongo/db/query/find.h
+++ b/src/mongo/db/query/find.h
@@ -42,20 +42,6 @@ class NamespaceString;
class OperationContext;
/**
- * Returns true if enough results have been prepared to stop adding more to the first batch.
- *
- * Should be called *after* adding to the result set rather than before.
- */
-bool enoughForFirstBatch(const LiteParsedQuery& pq, long long numDocs, int bytesBuffered);
-
-/**
- * Returns true if enough results have been prepared to stop adding more to a getMore batch.
- *
- * Should be called *after* adding to the result set rather than before.
- */
-bool enoughForGetMore(long long ntoreturn, long long numDocs, int bytesBuffered);
-
-/**
* Whether or not the ClientCursor* is tailable.
*/
bool isCursorTailable(const ClientCursor* cursor);