1
0
mirror of synced 2024-12-14 07:06:04 +03:00

DDC-568 - Fix bug with hints not being passed to hydrator by AbstractQuery::iterate()

This commit is contained in:
Benjamin Eberlei 2010-05-15 21:52:59 +02:00
parent ba6cb6bd14
commit 1067118174

View File

@ -463,7 +463,7 @@ abstract class AbstractQuery
public function iterate(array $params = array(), $hydrationMode = self::HYDRATE_OBJECT)
{
return $this->_em->newHydrator($this->_hydrationMode)->iterate(
$this->_doExecute($params, $hydrationMode), $this->_resultSetMapping
$this->_doExecute($params, $hydrationMode), $this->_resultSetMapping, $this->_hints
);
}