summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection_mock.h
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2017-05-04 18:36:07 -0400
committerGeert Bosch <geert@mongodb.com>2017-05-08 13:51:34 -0400
commit71c05d54c1e0f05e4e99ceda9ee7deb3c6a6b247 (patch)
tree0d12cd7318f03cdf9afe89509b56a55f403c82dd /src/mongo/db/catalog/collection_mock.h
parentbd678a44e7b087753024b27b2a75a465e00c7b89 (diff)
downloadmongo-71c05d54c1e0f05e4e99ceda9ee7deb3c6a6b247.tar.gz
SERVER-29088 Cache uuid in Collection class to fix perf regression
Diffstat (limited to 'src/mongo/db/catalog/collection_mock.h')
-rw-r--r--src/mongo/db/catalog/collection_mock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/catalog/collection_mock.h b/src/mongo/db/catalog/collection_mock.h
index 7b46367a766..8fe55e28a1d 100644
--- a/src/mongo/db/catalog/collection_mock.h
+++ b/src/mongo/db/catalog/collection_mock.h
@@ -269,7 +269,7 @@ public:
std::abort();
}
- OptionalCollectionUUID uuid(OperationContext* opCtx) const {
+ OptionalCollectionUUID uuid() const {
std::abort();
}
};