diff options
author | Xin Hao Zhang <xinhao.zhang@mongodb.com> | 2019-06-13 16:48:24 -0400 |
---|---|---|
committer | Xin Hao Zhang <xinhao.zhang@mongodb.com> | 2019-06-18 08:59:00 -0400 |
commit | 90da71501d23dc1b5a3d78417079fd62e989e035 (patch) | |
tree | c82b9751d959dcecef7dc8893e53ba107edbad20 /src/mongo/db/query/count_request.h | |
parent | 3031d98296f8fe8c9344030208949e449684b7cf (diff) | |
download | mongo-90da71501d23dc1b5a3d78417079fd62e989e035.tar.gz |
SERVER-1599 Add support for index hint to update command
Diffstat (limited to 'src/mongo/db/query/count_request.h')
-rw-r--r-- | src/mongo/db/query/count_request.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/query/count_request.h b/src/mongo/db/query/count_request.h index 4680323152b..e80ec9a259c 100644 --- a/src/mongo/db/query/count_request.h +++ b/src/mongo/db/query/count_request.h @@ -48,12 +48,6 @@ long long countParseLimit(const BSONElement& element); long long countParseSkip(const BSONElement& element); /** - * Parses a hint for a CountCommand. Returns the hint object, or if the element was a string the - * string wrapped in an object of the form {"$hint": <index_name>}. - */ -BSONObj countParseHint(const BSONElement& element); - -/** * Parses a maxTimeMS for a CountCommand. Errors if the value passed is negative. * Throws on invalid values. */ |