diff options
author | David Storch <david.storch@10gen.com> | 2015-08-06 09:49:02 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2015-08-06 17:25:01 -0400 |
commit | 1b5b55cb48ff9daca74177b86d336613d207c5d1 (patch) | |
tree | 37b170f23d4a3392b130ec533b4e5157f4def0e1 /src/mongo/db/query/find.h | |
parent | 58e8b39e9b0bd02e25a98cf09e893f3d2f79401a (diff) | |
download | mongo-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.h | 14 |
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); |