summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/getmore_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/getmore_request.h')
-rw-r--r--src/mongo/db/query/getmore_request.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/getmore_request.h b/src/mongo/db/query/getmore_request.h
index 4da4839abbd..8fa2d0fc5dd 100644
--- a/src/mongo/db/query/getmore_request.h
+++ b/src/mongo/db/query/getmore_request.h
@@ -52,7 +52,7 @@ struct GetMoreRequest {
*/
GetMoreRequest(NamespaceString namespaceString,
CursorId id,
- boost::optional<std::int64_t> sizeOfBatch,
+ boost::optional<long long> sizeOfBatch,
boost::optional<Milliseconds> awaitDataTimeout,
boost::optional<long long> term,
boost::optional<repl::OpTime> lastKnownCommittedOpTime);
@@ -76,7 +76,7 @@ struct GetMoreRequest {
// The batch size is optional. If not provided, we will put as many documents into the batch
// as fit within the byte limit.
- const boost::optional<std::int64_t> batchSize;
+ const boost::optional<long long> batchSize;
// The number of milliseconds for which a getMore on a tailable, awaitData query should block.
const boost::optional<Milliseconds> awaitDataTimeout;