summaryrefslogtreecommitdiff
path: root/jstests/dur/indexbg.js
blob: 55bd0c0098a51511f075d561cbbbfdd50e0f6c61 (plain)
1
2
3
4
5
6
7
path = MongoRunner.dataDir + '/indexbg_dur';

var m = MongoRunner.runMongod({journal: "", smallfiles: "", journalOptions: 24});
t = m.getDB('test').test;
t.save({x: 1});
t.createIndex({x: 1}, {background: true});
t.count();