summaryrefslogtreecommitdiff
path: root/src/mongo/s/catalog/sharding_catalog_client_impl.h
diff options
context:
space:
mode:
authorKaitlin Mahar <kaitlin.mahar@mongodb.com>2018-01-08 18:18:44 -0500
committerKaitlin Mahar <kaitlin.mahar@mongodb.com>2018-01-15 19:50:24 -0500
commit0bb9226dcedc4bcb98ce97f10f1262da3905d71b (patch)
tree926704e98f4ff6eddf9392a44729e865039fb019 /src/mongo/s/catalog/sharding_catalog_client_impl.h
parent0784425fa2d58b6a2bff3125b50be7f0d6a7f489 (diff)
downloadmongo-0bb9226dcedc4bcb98ce97f10f1262da3905d71b.tar.gz
SERVER-32365 Move the logic of the dropDatabase command into the new _configsvrDropDatabase command
Diffstat (limited to 'src/mongo/s/catalog/sharding_catalog_client_impl.h')
-rw-r--r--src/mongo/s/catalog/sharding_catalog_client_impl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/s/catalog/sharding_catalog_client_impl.h b/src/mongo/s/catalog/sharding_catalog_client_impl.h
index a5a4588627e..94b080538b2 100644
--- a/src/mongo/s/catalog/sharding_catalog_client_impl.h
+++ b/src/mongo/s/catalog/sharding_catalog_client_impl.h
@@ -96,13 +96,13 @@ public:
const std::string& collNs,
repl::ReadConcernLevel readConcernLevel) override;
- StatusWith<std::vector<CollectionType>> getCollections(OperationContext* opCtx,
- const std::string* dbName,
- repl::OpTime* optime) override;
+ StatusWith<std::vector<CollectionType>> getCollections(
+ OperationContext* opCtx,
+ const std::string* dbName,
+ repl::OpTime* optime,
+ repl::ReadConcernLevel readConcernLevel) override;
- Status dropCollection(OperationContext* opCtx,
- const NamespaceString& ns,
- repl::ReadConcernLevel readConcernLevel) override;
+ Status dropCollection(OperationContext* opCtx, const NamespaceString& ns) override;
StatusWith<std::vector<std::string>> getDatabasesForShard(OperationContext* opCtx,
const ShardId& shardName) override;