-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 0.6.3
-
Component/s: None
-
None
--TEST-- MongoDB\Driver\Cursor: Failing getmore --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php CLEANUP(STANDALONE); LOAD(STANDALONE); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; $manager = new MongoDB\Driver\Manager(STANDALONE); $query = new MongoDB\Driver\Query(array(), array( 'projection' => array('_id' => 0, 'username' => 1), 'sort' => array('username' => 1), )); $cursor = $manager->executeQuery(NS, $query); failGetMore($manager); foreach ($cursor as $document) { echo $document['username'] . "\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECT--
- is related to
-
CDRIVER-679 mongoc_client_kill_cursor triggers Server Selection
- Closed
- related to
-
PHPC-308 Failed getmore should throw exception
- Closed