Merge branch 'hotfix/#1346-post-insert-big-integer-cast-avoidance'
Close #1346
This commit is contained in:
commit
22d699008c
@ -35,10 +35,10 @@ use Doctrine\ORM\Cache\EntityCacheKey;
|
||||
class ReadWriteCachedEntityPersister extends AbstractEntityPersister
|
||||
{
|
||||
/**
|
||||
* @param \Doctrine\ORM\Persister\Entity\EntityPersister $persister The entity persister to cache.
|
||||
* @param \Doctrine\ORM\Cache\ConcurrentRegion $region The entity cache region.
|
||||
* @param \Doctrine\ORM\EntityManagerInterface $em The entity manager.
|
||||
* @param \Doctrine\ORM\Mapping\ClassMetadata $class The entity metadata.
|
||||
* @param \Doctrine\ORM\Persisters\Entity\EntityPersister $persister The entity persister to cache.
|
||||
* @param \Doctrine\ORM\Cache\ConcurrentRegion $region The entity cache region.
|
||||
* @param \Doctrine\ORM\EntityManagerInterface $em The entity manager.
|
||||
* @param \Doctrine\ORM\Mapping\ClassMetadata $class The entity metadata.
|
||||
*/
|
||||
public function __construct(EntityPersister $persister, ConcurrentRegion $region, EntityManagerInterface $em, ClassMetadata $class)
|
||||
{
|
||||
|
@ -285,7 +285,10 @@ class BasicEntityPersister implements EntityPersister
|
||||
$id = array(
|
||||
$this->class->identifier[0] => $generatedId
|
||||
);
|
||||
$postInsertIds[$generatedId] = $entity;
|
||||
$postInsertIds[] = array(
|
||||
'generatedId' => $generatedId,
|
||||
'entity' => $entity,
|
||||
);
|
||||
} else {
|
||||
$id = $this->class->getIdentifierValues($entity);
|
||||
}
|
||||
|
@ -180,7 +180,10 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
|
||||
$id = array(
|
||||
$this->class->identifier[0] => $generatedId
|
||||
);
|
||||
$postInsertIds[$generatedId] = $entity;
|
||||
$postInsertIds[] = array(
|
||||
'generatedId' => $generatedId,
|
||||
'entity' => $entity,
|
||||
);
|
||||
} else {
|
||||
$id = $this->em->getUnitOfWork()->getEntityIdentifier($entity);
|
||||
}
|
||||
|
@ -1019,7 +1019,9 @@ class UnitOfWork implements PropertyChangedListener
|
||||
|
||||
if ($postInsertIds) {
|
||||
// Persister returned post-insert IDs
|
||||
foreach ($postInsertIds as $id => $entity) {
|
||||
foreach ($postInsertIds as $postInsertId) {
|
||||
$id = $postInsertId['generatedId'];
|
||||
$entity = $postInsertId['entity'];
|
||||
$oid = spl_object_hash($entity);
|
||||
$idField = $class->identifier[0];
|
||||
|
||||
|
@ -55,7 +55,10 @@ class EntityPersisterMock extends \Doctrine\ORM\Persisters\Entity\BasicEntityPer
|
||||
if ( ! is_null($this->mockIdGeneratorType) && $this->mockIdGeneratorType == \Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_IDENTITY
|
||||
|| $this->class->isIdGeneratorIdentity()) {
|
||||
$id = $this->identityColumnValueCounter++;
|
||||
$this->postInsertIds[$id] = $entity;
|
||||
$this->postInsertIds[] = array(
|
||||
'generatedId' => $id,
|
||||
'entity' => $entity,
|
||||
);
|
||||
return $id;
|
||||
}
|
||||
return null;
|
||||
|
422
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php
Normal file
422
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php
Normal file
@ -0,0 +1,422 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||
|
||||
use Doctrine\DBAL\Cache\QueryCacheProfile;
|
||||
use Doctrine\DBAL\Connection;
|
||||
use Doctrine\ORM\EntityManager;
|
||||
use Doctrine\ORM\Tools\ToolsException;
|
||||
use Doctrine\Tests\OrmFunctionalTestCase;
|
||||
|
||||
/**
|
||||
* @group DDC-3634
|
||||
*/
|
||||
class DDC3634Test extends OrmFunctionalTestCase {
|
||||
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
try {
|
||||
$this->_schemaTool->createSchema([
|
||||
$this->_em->getClassMetadata(DDC3634Entity::CLASSNAME),
|
||||
$this->_em->getClassMetadata(DDC3634JTIBaseEntity::CLASSNAME),
|
||||
$this->_em->getClassMetadata(DDC3634JTIChildEntity::CLASSNAME),
|
||||
]);
|
||||
} catch (ToolsException $e) {
|
||||
// schema already in place
|
||||
}
|
||||
}
|
||||
|
||||
public function testSavesVeryLargeIntegerAutoGeneratedValue()
|
||||
{
|
||||
$veryLargeId = PHP_INT_MAX . PHP_INT_MAX;
|
||||
|
||||
$entityManager = EntityManager::create(
|
||||
new DDC3634LastInsertIdMockingConnection($veryLargeId, $this->_em->getConnection()),
|
||||
$this->_em->getConfiguration()
|
||||
);
|
||||
|
||||
$entity = new DDC3634Entity();
|
||||
|
||||
$entityManager->persist($entity);
|
||||
$entityManager->flush();
|
||||
|
||||
$this->assertSame($veryLargeId, $entity->id);
|
||||
}
|
||||
|
||||
public function testSavesIntegerAutoGeneratedValueAsString()
|
||||
{
|
||||
$entity = new DDC3634Entity();
|
||||
|
||||
$this->_em->persist($entity);
|
||||
$this->_em->flush();
|
||||
|
||||
$this->assertInternalType('string', $entity->id);
|
||||
}
|
||||
|
||||
public function testSavesIntegerAutoGeneratedValueAsStringWithJoinedInheritance()
|
||||
{
|
||||
$entity = new DDC3634JTIChildEntity();
|
||||
|
||||
$this->_em->persist($entity);
|
||||
$this->_em->flush();
|
||||
|
||||
$this->assertInternalType('string', $entity->id);
|
||||
}
|
||||
}
|
||||
|
||||
/** @Entity */
|
||||
class DDC3634Entity
|
||||
{
|
||||
const CLASSNAME = __CLASS__;
|
||||
|
||||
/** @Id @Column(type="bigint") @GeneratedValue(strategy="AUTO") */
|
||||
public $id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @Entity
|
||||
* @InheritanceType("JOINED")
|
||||
* @DiscriminatorMap({
|
||||
* DDC3634JTIBaseEntity::class = DDC3634JTIBaseEntity::class,
|
||||
* DDC3634JTIChildEntity::class = DDC3634JTIChildEntity::class,
|
||||
* })
|
||||
*/
|
||||
class DDC3634JTIBaseEntity
|
||||
{
|
||||
const CLASSNAME = __CLASS__;
|
||||
|
||||
/** @Id @Column(type="bigint") @GeneratedValue(strategy="AUTO") */
|
||||
public $id;
|
||||
}
|
||||
|
||||
/** @Entity */
|
||||
class DDC3634JTIChildEntity extends DDC3634JTIBaseEntity
|
||||
{
|
||||
const CLASSNAME = __CLASS__;
|
||||
}
|
||||
|
||||
class DDC3634LastInsertIdMockingConnection extends Connection
|
||||
{
|
||||
/**
|
||||
* @var Connection
|
||||
*/
|
||||
private $realConnection;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
private $identifier;
|
||||
|
||||
/**
|
||||
* @param int $identifier
|
||||
* @param Connection $realConnection
|
||||
*/
|
||||
public function __construct($identifier, Connection $realConnection)
|
||||
{
|
||||
$this->realConnection = $realConnection;
|
||||
$this->identifier = $identifier;
|
||||
}
|
||||
|
||||
private function forwardCall()
|
||||
{
|
||||
$trace = debug_backtrace(0, 2)[1];
|
||||
|
||||
return call_user_func_array([$this->realConnection, $trace['function']], $trace['args']);
|
||||
}
|
||||
|
||||
public function getParams()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getDatabase()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getHost()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getPort()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getUsername()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getPassword()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getDriver()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getConfiguration()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getEventManager()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getDatabasePlatform()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getExpressionBuilder()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function connect()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function isAutoCommit()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function setAutoCommit($autoCommit)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function setFetchMode($fetchMode)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function fetchAssoc($statement, array $params = [], array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function fetchArray($statement, array $params = [], array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function fetchColumn($statement, array $params = [], $column = 0, array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function isConnected()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function isTransactionActive()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function delete($tableExpression, array $identifier, array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function close()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function setTransactionIsolation($level)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getTransactionIsolation()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function update($tableExpression, array $data, array $identifier, array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function insert($tableExpression, array $data, array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function quoteIdentifier($str)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function quote($input, $type = null)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function fetchAll($sql, array $params = [], $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function prepare($statement)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function executeQuery($query, array $params = [], $types = [], QueryCacheProfile $qcp = null)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function executeCacheQuery($query, $params, $types, QueryCacheProfile $qcp)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function project($query, array $params, \Closure $function)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function query()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function executeUpdate($query, array $params = [], array $types = [])
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function exec($statement)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getTransactionNestingLevel()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function errorCode()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function errorInfo()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function lastInsertId($seqName = null)
|
||||
{
|
||||
return $this->identifier;
|
||||
}
|
||||
|
||||
public function transactional(\Closure $func)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function setNestTransactionsWithSavepoints($nestTransactionsWithSavepoints)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getNestTransactionsWithSavepoints()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
protected function _getNestedTransactionSavePointName()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function beginTransaction()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function commit()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function rollBack()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function createSavepoint($savepoint)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function releaseSavepoint($savepoint)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function rollbackSavepoint($savepoint)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getWrappedConnection()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function getSchemaManager()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function setRollbackOnly()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function isRollbackOnly()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function convertToDatabaseValue($value, $type)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function convertToPHPValue($value, $type)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function resolveParams(array $params, array $types)
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function createQueryBuilder()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
|
||||
public function ping()
|
||||
{
|
||||
return $this->forwardCall();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user