SERVER-84420: Remove unnecessary tasserts.

GitOrigin-RevId: 0ed764def55f8da546d7f100244445f1fb4073bd
This commit is contained in:
Sandeep Dhoot 2024-05-30 19:42:43 +00:00 committed by Evergreen Agent
parent ba3b04db35
commit dd42977758
1 changed files with 0 additions and 3 deletions

View File

@ -132,7 +132,6 @@ public:
* Should not be used once execution has begun. * Should not be used once execution has begun.
*/ */
std::vector<boost::intrusive_ptr<Expression>>& getMutableIdExpressions() { std::vector<boost::intrusive_ptr<Expression>>& getMutableIdExpressions() {
tassert(7020503, "Can't mutate _id fields after initialization", !_executionStarted);
return _idExpressions; return _idExpressions;
} }
@ -148,8 +147,6 @@ public:
* Should not be used once execution has begun. * Should not be used once execution has begun.
*/ */
std::vector<AccumulationStatement>& getMutableAccumulationStatements() { std::vector<AccumulationStatement>& getMutableAccumulationStatements() {
tassert(
7020504, "Can't mutate accumulated fields after initialization", !_executionStarted);
return _accumulatedFields; return _accumulatedFields;
} }