diff --git a/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php b/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php index b92cc8a2f..cec9c6e6c 100644 --- a/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php +++ b/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php @@ -273,17 +273,17 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager * * @param string $database The name of the database to drop. * @return boolean $result + * @override */ public function dropDatabase($database = null) { if (is_null($database)) { + //TODO: How to deal with this? We need to connect to another database + // in order to drop this one! $database = $this->_conn->getDatabase(); } $sql = $this->_platform->getDropDatabaseSql($database); - //$this->_conn->close(); - - return $this->_executeSql($sql, 'execute'); } } \ No newline at end of file