From 1067118174357606992685f52973ec868ad78245 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 15 May 2010 21:52:59 +0200 Subject: [PATCH] DDC-568 - Fix bug with hints not being passed to hydrator by AbstractQuery::iterate() --- lib/Doctrine/ORM/AbstractQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php index 9ad032bec..7c3c42f9c 100644 --- a/lib/Doctrine/ORM/AbstractQuery.php +++ b/lib/Doctrine/ORM/AbstractQuery.php @@ -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 ); }