1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Merge pull request #7367 from timdev/fix/entitymanager-find-with-optimistic-lock-no-need-tx

Fix for BC break in 2.6.2 when calling EM::find() with LockMode::OPTIMISTIC outside of a TX
This commit is contained in:
Michael Moravec 2018-09-23 06:43:26 +02:00 committed by GitHub
commit 1d71fbf77b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 76 additions and 1 deletions

View File

@ -926,7 +926,7 @@ use Throwable;
if (!$class->isVersioned) {
throw OptimisticLockException::notVersioned($class->name);
}
// Intentional fallthrough
break;
case LockMode::PESSIMISTIC_READ:
case LockMode::PESSIMISTIC_WRITE:
if (!$this->getConnection()->isTransactionActive()) {

View File

@ -0,0 +1,75 @@
<?php
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\LockMode;
use Doctrine\ORM\TransactionRequiredException;
use Doctrine\Tests\OrmFunctionalTestCase;
final class GH7366Test extends OrmFunctionalTestCase
{
/**
* {@inheritDoc}
*/
protected function setUp() : void
{
parent::setUp();
$this->setUpEntitySchema(
[
GH7366Entity::class,
]
);
$this->_em->persist(new GH7366Entity('baz'));
$this->_em->flush();
$this->_em->clear();
}
public function testOptimisticLockNoExceptionOnFind() : void
{
try {
$entity = $this->_em->find(GH7366Entity::class, 1, LockMode::OPTIMISTIC);
} catch (TransactionRequiredException $e) {
self::fail('EntityManager::find() threw TransactionRequiredException with LockMode::OPTIMISTIC');
}
self::assertEquals('baz', $entity->getName());
}
}
/**
* @Entity
*/
class GH7366Entity
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue
* @var int
*/
public $id;
/**
* @Column(type="integer")
* @Version
*/
protected $lockVersion = 1;
/**
* @Column(length=32)
* @var string
*/
protected $name;
public function __construct(string $name)
{
$this->name = $name;
}
public function getName(): string
{
return $this->name;
}
}