summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/fts_access_method.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2014-06-19 13:38:24 -0400
committerMathias Stearn <mathias@10gen.com>2014-06-19 19:35:15 -0400
commit98a0c6f7c2a91d28a1f48c8fb0805e6745f0e8f9 (patch)
tree1570eec49263742ff2d7219fffb8f4610b3e0d16 /src/mongo/db/index/fts_access_method.h
parent527ee3561d90aad6a66c7c656d2950eef6f1331b (diff)
downloadmongo-98a0c6f7c2a91d28a1f48c8fb0805e6745f0e8f9.tar.gz
SERVER-13635 IndexAccessMethods now take a BtreeInterface rather than a RecordStore
Diffstat (limited to 'src/mongo/db/index/fts_access_method.h')
-rw-r--r--src/mongo/db/index/fts_access_method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index/fts_access_method.h b/src/mongo/db/index/fts_access_method.h
index 2ea4fecc375..66d04f1957e 100644
--- a/src/mongo/db/index/fts_access_method.h
+++ b/src/mongo/db/index/fts_access_method.h
@@ -38,7 +38,7 @@ namespace mongo {
class FTSAccessMethod : public BtreeBasedAccessMethod {
public:
- FTSAccessMethod(IndexCatalogEntry* btreeState, RecordStore* rs );
+ FTSAccessMethod(IndexCatalogEntry* btreeState, BtreeInterface* btree );
virtual ~FTSAccessMethod() { }
const fts::FTSSpec& getSpec() const { return _ftsSpec; }