diff options
author | Eliot Horowitz <eliot@10gen.com> | 2013-07-18 09:35:32 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2013-07-18 09:35:32 -0400 |
commit | c95d4bc5744dc6aaa9abf202ebee0bee2ffa5463 (patch) | |
tree | 425674c15ddd5343ba88c0f612e2c2603ce65fd9 /src/mongo/dbtests/pdfiletests.cpp | |
parent | a2960637041c11bc1d8b925e5a99975b7fe9485e (diff) | |
download | mongo-c95d4bc5744dc6aaa9abf202ebee0bee2ffa5463.tar.gz |
SERVER-6405: lots of prep work for Collection class
splitting pdfile into more components
added ExtentManager which should be the only way to do DiskLoc -> Record
Diffstat (limited to 'src/mongo/dbtests/pdfiletests.cpp')
-rw-r--r-- | src/mongo/dbtests/pdfiletests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/pdfiletests.cpp b/src/mongo/dbtests/pdfiletests.cpp index 0f078131b36..76b09fbec64 100644 --- a/src/mongo/dbtests/pdfiletests.cpp +++ b/src/mongo/dbtests/pdfiletests.cpp @@ -370,7 +370,7 @@ namespace PdfileTests { n++; if( n == 5 && sizeof(void*)==4 ) break; - MongoDataFile * f = d->addAFile( big , false ); + DataFile * f = d->addAFile( big , false ); //cout << f->length() << ' ' << n << endl; if ( f->length() == l ) break; |