Compare commits

..

No commits in common. "756474d460c565ad399346b773787abf9c8c8cf7" and "fed7d2e302c51aec31eee4a4380d0c244ad1a256" have entirely different histories.

View File

@ -259,11 +259,6 @@ class QueryBuilder implements Query\QueryBuilderInterface
if ( null === $offset = $this->getFragment(Query\Offset::class) ) { if ( null === $offset = $this->getFragment(Query\Offset::class) ) {
$offset = new Query\Offset(); $offset = new Query\Offset();
$this->push($offset); $this->push($offset);
# A limit is required to match an offset
if ( null === $limit = $this->getFragment(Query\Limit::class) ) {
$this->limit(\PHP_INT_MAX);
}
} }
$offset->set($value); $offset->set($value);