Commit 10671181 authored by Benjamin Eberlei's avatar Benjamin Eberlei

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

parent ba6cb6bd
...@@ -463,7 +463,7 @@ abstract class AbstractQuery ...@@ -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
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment