1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

DDC-1193 - Fix previous commit.

This commit is contained in:
Benjamin Eberlei 2011-06-05 10:02:57 +02:00
parent acaf08d4b7
commit bda4165bf8
2 changed files with 3 additions and 7 deletions

View file

@ -563,7 +563,7 @@ class BasicEntityPersister
* @todo Check identity map? loadById method? Try to guess whether $criteria is the id? * @todo Check identity map? loadById method? Try to guess whether $criteria is the id?
*/ */
public function load(array $criteria, $entity = null, $assoc = null, array $hints = array(), $lockMode = 0) public function load(array $criteria, $entity = null, $assoc = null, array $hints = array(), $lockMode = 0)
{ {
$sql = $this->_getSelectEntitiesSQL($criteria, $assoc, $lockMode); $sql = $this->_getSelectEntitiesSQL($criteria, $assoc, $lockMode);
list($params, $types) = $this->expandParameters($criteria); list($params, $types) = $this->expandParameters($criteria);
$stmt = $this->_conn->executeQuery($sql, $params, $types); $stmt = $this->_conn->executeQuery($sql, $params, $types);
@ -577,7 +577,7 @@ class BasicEntityPersister
} else { } else {
$hydrator = $this->_em->newHydrator(Query::HYDRATE_SIMPLEOBJECT); $hydrator = $this->_em->newHydrator(Query::HYDRATE_SIMPLEOBJECT);
} }
$entities = $hydrator->hydrateAll($stmt, $this->_rsm, $hints); $entities = $hydrator->hydrateAll($stmt, $this->_rsm, $hints);
return $entities ? $entities[0] : null; return $entities ? $entities[0] : null;
} }

View file

@ -1678,10 +1678,6 @@ class UnitOfWork implements PropertyChangedListener
continue; continue;
} }
if ($entity instanceof Proxy && !$entity->__isInitialized__) {
$entity->__load();
}
$relatedEntities = $class->reflFields[$assoc['fieldName']]->getValue($entity); $relatedEntities = $class->reflFields[$assoc['fieldName']]->getValue($entity);
if (($relatedEntities instanceof Collection || is_array($relatedEntities))) { if (($relatedEntities instanceof Collection || is_array($relatedEntities))) {
if ($relatedEntities instanceof PersistentCollection) { if ($relatedEntities instanceof PersistentCollection) {
@ -1711,7 +1707,7 @@ class UnitOfWork implements PropertyChangedListener
continue; continue;
} }
if ($entity instanceof Proxy) { if ($entity instanceof Proxy && !$entity->__isInitialized__) {
$entity->__load(); $entity->__load();
} }