don't allow dropping an index $ collection

http://jira.mongodb.org/browse/SERVER-217
This commit is contained in:
Dwight
2009-08-13 13:26:03 -04:00
parent e6258aaa47
commit f0c2c8003f
8 changed files with 34 additions and 30 deletions

View File

@@ -471,7 +471,7 @@ namespace mongo {
while ( d.moreJSObjs() ) {
BSONObj js = d.nextJsObj();
theDataFileMgr.insert(ns, js);
theDataFileMgr.insert(ns, js, false);
logOp("i", ns, js);
}
}