-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ObjectHydrator: defer initialization of potentially empty collections
If ObjectHydrator faces an empty row to an uninitialized collection, it initializes it, to prevent it from querying again (DDC-1526). However, if that row is the first but not the only in the collection, the next rows will be ignored, as the collection will be considered "existing", and "existing" collections are only replaced if REFRESH hint is present. To prevent it, we defer initialization to the end of the hydration. Fixes GH-9807
- Loading branch information
Showing
2 changed files
with
140 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
tests/Doctrine/Tests/ORM/Functional/Ticket/GH9807Test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Common\Collections\Collection; | ||
use Doctrine\ORM\Internal\Hydration\ObjectHydrator; | ||
use Doctrine\ORM\Mapping as ORM; | ||
use Doctrine\ORM\Mapping\Column; | ||
use Doctrine\ORM\Mapping\Entity; | ||
use Doctrine\ORM\Mapping\GeneratedValue; | ||
use Doctrine\ORM\Mapping\Id; | ||
use Doctrine\ORM\Query\ResultSetMapping; | ||
use Doctrine\Tests\Mocks\ArrayResultFactory; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
final class GH9807Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->createSchemaForModels(GH9807Main::class, GH9807Join::class); | ||
} | ||
|
||
public function testHydrateJoinedCollectionWithFirstNullishRow(): void | ||
{ | ||
$rsm = new ResultSetMapping(); | ||
$rsm->addEntityResult(GH9807Main::class, 'm'); | ||
$rsm->addJoinedEntityResult(GH9807Join::class, 'j', 'm', 'joins'); | ||
|
||
$rsm->addFieldResult('m', 'id_0', 'id'); | ||
$rsm->addFieldResult('j', 'id_1', 'id'); | ||
$rsm->addFieldResult('j', 'value_2', 'value'); | ||
|
||
$hydrator = new ObjectHydrator($this->_em); | ||
|
||
$uow = $this->_em->getUnitOfWork(); | ||
|
||
$uow->createEntity( | ||
GH9807Main::class, | ||
['id' => 1] | ||
); | ||
|
||
$resultSet = [ | ||
[ | ||
'id_0' => 1, | ||
'id_1' => null, | ||
'value_2' => null, | ||
], | ||
[ | ||
'id_0' => 1, | ||
'id_1' => 1, | ||
'value_2' => '2', | ||
], | ||
[ | ||
'id_0' => 1, | ||
'id_1' => 2, | ||
'value_2' => '2', | ||
], | ||
]; | ||
|
||
$stmt = ArrayResultFactory::createFromArray($resultSet); | ||
|
||
/** @var GH9807Main[] $result */ | ||
$result = $hydrator->hydrateAll($stmt, $rsm); | ||
|
||
self::assertInstanceOf(GH9807Main::class, $result[0]); | ||
self::assertCount(2, $result[0]->getJoins()); | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class GH9807Main | ||
{ | ||
/** | ||
* @var int | ||
* @Column(type="integer") | ||
* @Id | ||
* @GeneratedValue | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @ORM\ManyToMany(targetEntity="GH9807Join", inversedBy="starts") | ||
* | ||
* @var Collection<int, GH9807Join> | ||
*/ | ||
private $joins; | ||
|
||
/** | ||
* @return Collection<int, GH9807Join> | ||
*/ | ||
public function getJoins(): Collection | ||
{ | ||
return $this->joins; | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class GH9807Join | ||
{ | ||
/** | ||
* @var int | ||
* @Column(type="integer") | ||
* @Id | ||
* @GeneratedValue | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @ORM\ManyToMany(targetEntity="GH9807Main", mappedBy="bases") | ||
* | ||
* @var Collection<int, GH9807Main> | ||
*/ | ||
private $mains; | ||
|
||
/** | ||
* @ORM\Column(type="string", nullable=false) | ||
* | ||
* @var string | ||
*/ | ||
private $value; | ||
} |