summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/haystack_access_method.h
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-10-11 15:43:55 -0400
committerBenety Goh <benety@mongodb.com>2018-10-11 15:43:55 -0400
commit2596d96f4a826777d7210b94d46a5b36aebfd15b (patch)
tree7f1e5462f7be076a1f5916e528ceae903958916b /src/mongo/db/index/haystack_access_method.h
parenta222ef5e647ac527f7d4f8636bcacd6cc0ae6b8e (diff)
downloadmongo-2596d96f4a826777d7210b94d46a5b36aebfd15b.tar.gz
SERVER-36889 split IndexAccessMethod into interface and abstract implementation
Diffstat (limited to 'src/mongo/db/index/haystack_access_method.h')
-rw-r--r--src/mongo/db/index/haystack_access_method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index/haystack_access_method.h b/src/mongo/db/index/haystack_access_method.h
index a6aef7a2df4..8d46ff2c6f5 100644
--- a/src/mongo/db/index/haystack_access_method.h
+++ b/src/mongo/db/index/haystack_access_method.h
@@ -54,7 +54,7 @@ class OperationContext;
* bucketSize specifies the dimension of the square bucket for the data in pos.
* ALL fields are mandatory.
*/
-class HaystackAccessMethod : public IndexAccessMethod {
+class HaystackAccessMethod : public AbstractIndexAccessMethod {
public:
HaystackAccessMethod(IndexCatalogEntry* btreeState, SortedDataInterface* btree);