summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/create_collection_coordinator.cpp
diff options
context:
space:
mode:
authorHugh Tong <hugh.tong@mongodb.com>2022-07-26 19:20:58 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-26 21:00:49 +0000
commit044d2f734e0dba40b9dfb02cc49c2bff8f575cd5 (patch)
treeeb2d17564a0c99d2ee9ea3d2f95c81c46bcfcee1 /src/mongo/db/s/create_collection_coordinator.cpp
parent921bba175902f9b9f29751a466383c3d7e80df7b (diff)
downloadmongo-044d2f734e0dba40b9dfb02cc49c2bff8f575cd5.tar.gz
SERVER-67824 Rename IDLParserErrorContext to IDLParserContext
Diffstat (limited to 'src/mongo/db/s/create_collection_coordinator.cpp')
-rw-r--r--src/mongo/db/s/create_collection_coordinator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/s/create_collection_coordinator.cpp b/src/mongo/db/s/create_collection_coordinator.cpp
index 23be2f5d94f..f023a4457df 100644
--- a/src/mongo/db/s/create_collection_coordinator.cpp
+++ b/src/mongo/db/s/create_collection_coordinator.cpp
@@ -323,7 +323,7 @@ const NamespaceString& CreateCollectionCoordinator::nss() const {
void CreateCollectionCoordinator::checkIfOptionsConflict(const BSONObj& doc) const {
// If we have two shard collections on the same namespace, then the arguments must be the same.
const auto otherDoc = CreateCollectionCoordinatorDocument::parse(
- IDLParserErrorContext("CreateCollectionCoordinatorDocument"), doc);
+ IDLParserContext("CreateCollectionCoordinatorDocument"), doc);
uassert(ErrorCodes::ConflictingOperationInProgress,
"Another create collection with different arguments is already running for the same "
@@ -601,7 +601,7 @@ void CreateCollectionCoordinator::_createCollectionAndIndexes(OperationContext*
boost::optional<Collation> collation;
if (!collationBSON.isEmpty()) {
collation.emplace(
- Collation::parse(IDLParserErrorContext("CreateCollectionCoordinator"), collationBSON));
+ Collation::parse(IDLParserContext("CreateCollectionCoordinator"), collationBSON));
}
// We need to implicitly create a timeseries view and underlying bucket collection.