--TEST-- ReadConcern: MongoDB\Driver\Manager::executeQuery() with readConcern option --SKIPIF-- --FILE-- insert(['_id' => 1, 'x' => 1]); $bulk->insert(['_id' => 2, 'x' => 2]); $manager->executeBulkWrite(NS, $bulk, $wc); $rc = new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL); $query = new MongoDB\Driver\Query(['x' => 2], ['readConcern' => $rc]); $cursor = $manager->executeQuery(NS, $query); var_dump(iterator_to_array($cursor)); $rc = new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::MAJORITY); $query = new MongoDB\Driver\Query(['x' => 2], ['readConcern' => $rc]); $cursor = $manager->executeQuery(NS, $query); var_dump(iterator_to_array($cursor)); ?> ===DONE=== --EXPECTF-- array(1) { [0]=> object(stdClass)#%d (%d) { ["_id"]=> int(2) ["x"]=> int(2) } } array(1) { [0]=> object(stdClass)#%d (%d) { ["_id"]=> int(2) ["x"]=> int(2) } } ===DONE===