mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 16:46:00 +01:00
11 lines
328 B
JavaScript
11 lines
328 B
JavaScript
// SERVER-13912 Capped collections with size=0 are promoted to the minimum Extent size
|
|
var name = "capped_server13912";
|
|
var minExtentSize = 0x1000; // from ExtentManager::minSize()
|
|
|
|
var t = db.getCollection(name);
|
|
t.drop();
|
|
|
|
db.createCollection(name, {capped: true, size: 0});
|
|
|
|
assert.eq(t.stats().storageSize, minExtentSize);
|