[DBAL-483] Pass default values to DBAL mapping layer correctly to fix default comparision bug.
This commit is contained in:
parent
d513e0f084
commit
1f08acb576
3 changed files with 65 additions and 19 deletions
|
@ -398,22 +398,14 @@ class SchemaTool
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($mapping['options'])) {
|
if (isset($mapping['options'])) {
|
||||||
if (isset($mapping['options']['comment'])) {
|
$knownOptions = array('comment', 'unsigned', 'fixed', 'default');
|
||||||
$options['comment'] = $mapping['options']['comment'];
|
|
||||||
|
|
||||||
unset($mapping['options']['comment']);
|
foreach ($knownOptions as $knownOption) {
|
||||||
}
|
if ( isset($mapping['options'][$knownOption])) {
|
||||||
|
$options[$knownOption] = $mapping['options'][$knownOption];
|
||||||
|
|
||||||
if (isset($mapping['options']['unsigned'])) {
|
unset($mapping['options'][$knownOption]);
|
||||||
$options['unsigned'] = $mapping['options']['unsigned'];
|
}
|
||||||
|
|
||||||
unset($mapping['options']['unsigned']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($mapping['options']['fixed'])) {
|
|
||||||
$options['fixed'] = $mapping['options']['fixed'];
|
|
||||||
|
|
||||||
unset($mapping['options']['fixed']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$options['customSchemaOptions'] = $mapping['options'];
|
$options['customSchemaOptions'] = $mapping['options'];
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\ORM\Functional\SchemaTool;
|
||||||
|
|
||||||
|
use Doctrine\ORM\Tools;
|
||||||
|
|
||||||
|
class DBAL483Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
{
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$conn = $this->_em->getConnection();
|
||||||
|
|
||||||
|
$this->schemaTool = new Tools\SchemaTool($this->_em);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DBAL-483
|
||||||
|
*/
|
||||||
|
public function testDefaultValueIsComparedCorrectly()
|
||||||
|
{
|
||||||
|
$class = $this->_em->getClassMetadata(__NAMESPACE__ . '\\DBAL483Default');
|
||||||
|
|
||||||
|
$this->schemaTool->createSchema(array($class));
|
||||||
|
|
||||||
|
$updateSql = $this->schemaTool->getUpdateSchemaSql(array($class));
|
||||||
|
|
||||||
|
$updateSql = array_filter($updateSql, function ($sql) {
|
||||||
|
return strpos($sql, 'DBAL483') !== false;
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->assertEquals(0, count($updateSql));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Entity
|
||||||
|
*/
|
||||||
|
class DBAL483Default
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @Id @Column(type="integer") @GeneratedValue
|
||||||
|
*/
|
||||||
|
public $id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Column(type="integer", options={"default": 0})
|
||||||
|
*/
|
||||||
|
public $num;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Column(type="string", options={"default": "foo"})
|
||||||
|
*/
|
||||||
|
public $str = "foo";
|
||||||
|
}
|
|
@ -4,9 +4,6 @@ namespace Doctrine\Tests\ORM\Functional\SchemaTool;
|
||||||
|
|
||||||
use Doctrine\ORM\Tools;
|
use Doctrine\ORM\Tools;
|
||||||
|
|
||||||
|
|
||||||
require_once __DIR__ . '/../../../TestInit.php';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WARNING: This test should be run as last test! It can affect others very easily!
|
* WARNING: This test should be run as last test! It can affect others very easily!
|
||||||
*/
|
*/
|
||||||
|
@ -15,7 +12,8 @@ class DDC214Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
private $classes = array();
|
private $classes = array();
|
||||||
private $schemaTool = null;
|
private $schemaTool = null;
|
||||||
|
|
||||||
public function setUp() {
|
public function setUp()
|
||||||
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$conn = $this->_em->getConnection();
|
$conn = $this->_em->getConnection();
|
||||||
|
@ -88,4 +86,4 @@ class DDC214Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
|
||||||
$this->assertEquals(0, count($sql), "SQL: " . implode(PHP_EOL, $sql));
|
$this->assertEquals(0, count($sql), "SQL: " . implode(PHP_EOL, $sql));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue