summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/hash_access_method.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/index/hash_access_method.h')
-rw-r--r--src/mongo/db/index/hash_access_method.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/index/hash_access_method.h b/src/mongo/db/index/hash_access_method.h
index fdcf3aa6183..21cdc453324 100644
--- a/src/mongo/db/index/hash_access_method.h
+++ b/src/mongo/db/index/hash_access_method.h
@@ -52,7 +52,10 @@ private:
* This function ignores the 'multikeyPaths' pointer because hashed indexes don't support
* tracking path-level multikey information.
*/
- void doGetKeys(const BSONObj& obj, BSONObjSet* keys, MultikeyPaths* multikeyPaths) const final;
+ void doGetKeys(const BSONObj& obj,
+ GetKeysContext context,
+ BSONObjSet* keys,
+ MultikeyPaths* multikeyPaths) const final;
// Only one of our fields is hashed. This is the field name for it.
std::string _hashedField;