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
1 changed files with 10 additions and 0 deletions
|
@ -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
|
* @group DDC-832
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue