--TEST-- Causal consistency: first read in session does not include afterClusterTime --DESCRIPTION-- Causal consistency spec prose test #2 https://github.com/mongodb/specifications/blob/master/source/causal-consistency/causal-consistency.rst#test-plan --SKIPIF-- --FILE-- observe( function() { $manager = create_test_manager(); $session = $manager->startSession(); $query = new MongoDB\Driver\Query([]); $manager->executeQuery(NS, $query, ['session' => $session]); }, function(stdClass $command) { $hasAfterClusterTime = isset($command->readConcern->afterClusterTime); printf("Read includes afterClusterTime: %s\n", ($hasAfterClusterTime ? 'yes' : 'no')); } ); ?> ===DONE=== --EXPECT-- Read includes afterClusterTime: no ===DONE===