diff options
author | Dwight <dwight@10gen.com> | 2011-11-17 14:39:51 -0500 |
---|---|---|
committer | Dwight <dwight@10gen.com> | 2011-11-17 14:40:14 -0500 |
commit | eab212db97c40828c98dbef03e64f06596bb3b47 (patch) | |
tree | 13f57433146acfd4cd15f81f53fd03f2578a15ef /dbtests | |
parent | c4e6e5554d5892e39adcc2b58050675888329766 (diff) | |
download | mongo-eab212db97c40828c98dbef03e64f06596bb3b47.tar.gz |
preparation for having a clean collection object
Diffstat (limited to 'dbtests')
-rw-r--r-- | dbtests/namespacetests.cpp | 2 | ||||
-rw-r--r-- | dbtests/test.vcxproj | 1 | ||||
-rwxr-xr-x | dbtests/test.vcxproj.filters | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/dbtests/namespacetests.cpp b/dbtests/namespacetests.cpp index bbb8f5e596e..2c61b2d54d2 100644 --- a/dbtests/namespacetests.cpp +++ b/dbtests/namespacetests.cpp @@ -45,7 +45,7 @@ namespace NamespaceTests { } protected: void create( bool sparse = false ) { - NamespaceDetailsTransient::get_w( ns() ).deletedIndex(); + NamespaceDetailsTransient::get( ns() ).deletedIndex(); BSONObjBuilder builder; builder.append( "ns", ns() ); builder.append( "name", "testIndex" ); diff --git a/dbtests/test.vcxproj b/dbtests/test.vcxproj index 7c920a047be..baf0c8167df 100644 --- a/dbtests/test.vcxproj +++ b/dbtests/test.vcxproj @@ -209,6 +209,7 @@ <ClInclude Include="..\bson\oid.h" />
<ClInclude Include="..\bson\ordering.h" />
<ClInclude Include="..\bson\stringdata.h" />
+ <ClInclude Include="..\db\collection.h" />
<ClInclude Include="..\db\dur.h" />
<ClInclude Include="..\db\durop.h" />
<ClInclude Include="..\db\dur_journal.h" />
diff --git a/dbtests/test.vcxproj.filters b/dbtests/test.vcxproj.filters index 2cbb44162c2..fa4517db62b 100755 --- a/dbtests/test.vcxproj.filters +++ b/dbtests/test.vcxproj.filters @@ -325,6 +325,7 @@ <ClInclude Include="..\third_party\pcre-7.4\pcrecpp.h" />
<ClInclude Include="..\third_party\pcre-7.4\config.h" />
<ClInclude Include="..\third_party\pcre-7.4\pcre.h" />
+ <ClInclude Include="..\db\collection.h" />
</ItemGroup>
<ItemGroup>
<Library Include="..\..\js\js64r.lib">
|