Files
mongo-php-driver/tests/bson/bug1067.phpt
2018-01-10 16:39:21 +00:00

17 lines
438 B
PHP

--TEST--
PHPC-1067: BSON document produces driver segfault with insert
--FILE--
<?php
$x = [
'_______' => new MongoDB\BSON\ObjectID('111111111111111111111111'),
'___________________________________' => new MongoDB\BSON\Regex('_______________________________________________________', 'i'),
];
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert($x);
?>
==DONE==
<?php exit(0); ?>
--EXPECT--
==DONE==