Files
mongo-php-driver/tests/query/query-ctor-005.phpt
Jeremy Mikola f37f589bbc PHPC-783: Use mongoc_collection_find_with_opts() for Query exec
Query struct fields have been consolidated to a filter and opts BSON documents.

This also changes the Query debug output significantly.
2016-09-20 16:57:20 -04:00

56 lines
835 B
PHP

--TEST--
MongoDB\Driver\Query construction with negative limit
--FILE--
<?php
var_dump(new MongoDB\Driver\Query(
['x' => 1],
['limit' => -5]
));
var_dump(new MongoDB\Driver\Query(
['x' => 1],
[
'limit' => -5,
'singleBatch' => true
]
));
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\Driver\Query)#%d (%d) {
["filter"]=>
object(stdClass)#%d (%d) {
["x"]=>
int(1)
}
["options"]=>
object(stdClass)#%d (%d) {
["limit"]=>
int(5)
["singleBatch"]=>
bool(true)
}
["readConcern"]=>
NULL
}
object(MongoDB\Driver\Query)#%d (%d) {
["filter"]=>
object(stdClass)#%d (%d) {
["x"]=>
int(1)
}
["options"]=>
object(stdClass)#%d (%d) {
["limit"]=>
int(5)
["singleBatch"]=>
bool(true)
}
["readConcern"]=>
NULL
}
===DONE===