From d13e94abf7d064d3fd2c09fc10b1801f3af13e7b Mon Sep 17 00:00:00 2001 From: romanb Date: Sat, 30 May 2009 11:34:38 +0000 Subject: [PATCH] [2.0] Small cleanups --- lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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