DDC-568 - Fix bug with hints not being passed to hydrator by AbstractQuery::iterate()
This commit is contained in:
parent
ba6cb6bd14
commit
1067118174
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ abstract class AbstractQuery
|
||||||
public function iterate(array $params = array(), $hydrationMode = self::HYDRATE_OBJECT)
|
public function iterate(array $params = array(), $hydrationMode = self::HYDRATE_OBJECT)
|
||||||
{
|
{
|
||||||
return $this->_em->newHydrator($this->_hydrationMode)->iterate(
|
return $this->_em->newHydrator($this->_hydrationMode)->iterate(
|
||||||
$this->_doExecute($params, $hydrationMode), $this->_resultSetMapping
|
$this->_doExecute($params, $hydrationMode), $this->_resultSetMapping, $this->_hints
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue