Commit c818df15 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Fix more tests on pgsql/travis

parent c2a40708
...@@ -19,8 +19,9 @@ class WriteTest extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -19,8 +19,9 @@ class WriteTest extends \Doctrine\Tests\DbalFunctionalTestCase
$table->addColumn('test_string', 'string', array('notnull' => false)); $table->addColumn('test_string', 'string', array('notnull' => false));
$table->setPrimaryKey(array('test_int')); $table->setPrimaryKey(array('test_int'));
$sm = $this->_conn->getSchemaManager(); foreach ($this->_conn->getDatabasePlatform()->getCreateTableSQL($table) AS $sql) {
$sm->createTable($table); $this->_conn->executeQuery($sql);
}
} catch(\Exception $e) { } catch(\Exception $e) {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment