summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/database_catalog_entry.h
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2014-12-22 17:32:27 -0500
committerScott Hernandez <scotthernandez@gmail.com>2015-01-02 14:21:08 -0500
commit8384c878b542352ba88ecade1e675b8412f2655f (patch)
treea9b40ee6ec4fb837b99a2d3a9e37b6ece12a650c /src/mongo/db/catalog/database_catalog_entry.h
parent8b37507dd51cdf058377a24ca0171e7fae6f2c6b (diff)
downloadmongo-8384c878b542352ba88ecade1e675b8412f2655f.tar.gz
SERVER-16502: make getCollection const and not require an OpContext
Diffstat (limited to 'src/mongo/db/catalog/database_catalog_entry.h')
-rw-r--r--src/mongo/db/catalog/database_catalog_entry.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mongo/db/catalog/database_catalog_entry.h b/src/mongo/db/catalog/database_catalog_entry.h
index 02b424924e7..2d9530d6fc4 100644
--- a/src/mongo/db/catalog/database_catalog_entry.h
+++ b/src/mongo/db/catalog/database_catalog_entry.h
@@ -82,12 +82,10 @@ namespace mongo {
virtual void getCollectionNamespaces( std::list<std::string>* out ) const = 0;
// The DatabaseCatalogEntry owns this, do not delete
- virtual CollectionCatalogEntry* getCollectionCatalogEntry( OperationContext* txn,
- const StringData& ns ) const = 0;
+ virtual CollectionCatalogEntry* getCollectionCatalogEntry( const StringData& ns ) const = 0;
// The DatabaseCatalogEntry owns this, do not delete
- virtual RecordStore* getRecordStore( OperationContext* txn,
- const StringData& ns ) = 0;
+ virtual RecordStore* getRecordStore( const StringData& ns ) const = 0;
// Ownership passes to caller
virtual IndexAccessMethod* getIndex( OperationContext* txn,