Data race condition
The value of the shared data will be determined by the interleaving of thread execution. Thread shared data is accessed without holding an appropriate lock, possibly causing a race condition
/src/mongo/db/exec/sbe/stages/scan.cpp:1092: MISSING_LOCK 141306 Accessing "this->_state->ranges" without holding lock "mongo::sbe::ParallelScanStage::ParallelState.mutex". Elsewhere, "mongo::sbe::ParallelScanStage::ParallelState.ranges" is written to with "ParallelState.mutex" held 3 out of 3 times.