1
0
mirror of synced 2025-01-18 22:41:43 +03:00

DDC-832 - Fix regression in testsuite due to SchemaTool not being able to handle reserved word table names.

This commit is contained in:
Benjamin Eberlei 2010-10-31 09:20:33 +01:00
parent 692c35e7e2
commit 9211bc2f4e

View File

@ -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
*/