summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts/fts_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/fts/fts_command.h')
-rw-r--r--src/mongo/db/fts/fts_command.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/fts/fts_command.h b/src/mongo/db/fts/fts_command.h
index 4c0ced7efea..7f6b4d7bc4d 100644
--- a/src/mongo/db/fts/fts_command.h
+++ b/src/mongo/db/fts/fts_command.h
@@ -40,6 +40,8 @@
namespace mongo {
+ class OperationContext;
+
namespace fts {
class FTSCommand : public Command {
@@ -64,7 +66,8 @@ namespace mongo {
bool fromRepl);
protected:
- bool _run( const std::string& dbName,
+ bool _run( OperationContext* txn,
+ const std::string& dbName,
BSONObj& cmdObj,
int cmdOptions,
const std::string& ns,