summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands.cpp')
-rw-r--r--src/mongo/db/commands.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/db/commands.cpp b/src/mongo/db/commands.cpp
index 87e9129e612..9616eca8650 100644
--- a/src/mongo/db/commands.cpp
+++ b/src/mongo/db/commands.cpp
@@ -166,6 +166,11 @@ namespace mongo {
help << "no help defined";
}
+ std::vector<BSONObj> Command::stopIndexBuilds(const std::string& dbname,
+ const BSONObj& cmdObj) {
+ return std::vector<BSONObj>();
+ }
+
Command* Command::findCommand( const string& name ) {
map<string,Command*>::iterator i = _commands->find( name );
if ( i == _commands->end() )