diff options
author | Maria van Keulen <maria@mongodb.com> | 2017-03-29 15:40:44 -0400 |
---|---|---|
committer | Maria van Keulen <maria@mongodb.com> | 2017-04-06 11:37:56 -0400 |
commit | 1cbb67b8acf6c579a8ef99f9b3bf74394bbd11c3 (patch) | |
tree | 426da6552cf3bb3315e46f925b0f3071e9979300 /src/mongo/dbtests/dbtests.cpp | |
parent | 4516cbf1786f35557fe2f2e26e2e25373aa7af83 (diff) | |
download | mongo-1cbb67b8acf6c579a8ef99f9b3bf74394bbd11c3.tar.gz |
SERVER-28543 Add OperationContext as an argument to getCollection
Diffstat (limited to 'src/mongo/dbtests/dbtests.cpp')
-rw-r--r-- | src/mongo/dbtests/dbtests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/dbtests.cpp b/src/mongo/dbtests/dbtests.cpp index 2f54eb7d1ae..2ac3e5aa221 100644 --- a/src/mongo/dbtests/dbtests.cpp +++ b/src/mongo/dbtests/dbtests.cpp @@ -97,7 +97,7 @@ Status createIndexFromSpec(OperationContext* opCtx, StringData ns, const BSONObj Collection* coll; { WriteUnitOfWork wunit(opCtx); - coll = autoDb.getDb()->getOrCreateCollection(opCtx, ns); + coll = autoDb.getDb()->getOrCreateCollection(opCtx, NamespaceString(ns)); invariant(coll); wunit.commit(); } |