DDC-832 - Fix regression in testsuite due to SchemaTool not being able to handle reserved word table names.
This commit is contained in:
parent
692c35e7e2
commit
9211bc2f4e
@ -24,6 +24,16 @@ class DDC832Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
}
|
||||
}
|
||||
|
||||
public function tearDown()
|
||||
{
|
||||
/* @var $sm \Doctrine\DBAL\Schema\AbstractSchemaManager */
|
||||
$platform = $this->_em->getConnection()->getDatabasePlatform();
|
||||
$sm = $this->_em->getConnection()->getSchemaManager();
|
||||
$sm->dropTable($platform->quoteIdentifier('TREE_INDEX'));
|
||||
$sm->dropTable($platform->quoteIdentifier('INDEX'));
|
||||
$sm->dropTable($platform->quoteIdentifier('LIKE'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @group DDC-832
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user