£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊǍí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶êםӼ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowЍø^d™ý½ßB7áyMä9ÜÖUã !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --TEST-- PHPC-1274: Session destruct should not abort transaction from parent process (disableClientPersistence=true) --SKIPIF-- --FILE-- true]); /* Create collections as that can't be (automatically) done in a transaction */ $manager->executeCommand( DATABASE_NAME, new MongoDB\Driver\Command(['create' => COLLECTION_NAME]), ['writeConcern' => new MongoDB\Driver\WriteConcern('majority')] ); $session = $manager->startSession(); $session->startTransaction(['writeConcern' => new MongoDB\Driver\WriteConcern('majority')]); $bulk = new MongoDB\Driver\BulkWrite(); $bulk->insert(['x' => 1]); $bulk->insert(['x' => 2]); $result = $manager->executeBulkWrite(NS, $bulk, ['session' => $session]); printf("Parent inserted %d documents\n", $result->getInsertedCount()); $childPid = pcntl_fork(); if ($childPid === 0) { echo "Child exits\n"; exit; } if ($childPid > 0) { $waitPid = pcntl_waitpid($childPid, $status); if ($waitPid === $childPid) { echo "Parent waited for child to exit\n"; } $bulk = new MongoDB\Driver\BulkWrite(); $bulk->insert(['x' => 3]); $bulk->insert(['x' => 4]); $result = $manager->executeBulkWrite(NS, $bulk, ['session' => $session]); printf("Parent inserted %d documents\n", $result->getInsertedCount()); $session->commitTransaction(); $cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query([])); printf("Parent fully iterated cursor for %d documents\n", iterator_count($cursor)); } ?> ===DONE=== --EXPECT-- Parent inserted 2 documents Child exits Parent waited for child to exit Parent inserted 2 documents Parent fully iterated cursor for 4 documents ===DONE===