From ba4d1bb39305e367d281e2e917b249e28af5cf5b Mon Sep 17 00:00:00 2001 From: guilhermeblanco Date: Wed, 25 Nov 2009 16:27:18 +0000 Subject: [PATCH] Fix create/drop database against PgSQL. Thanks Hannes and Russ for patch --- .../DBAL/Schema/PostgreSqlSchemaManager.php | 32 +++++++++++++++++++ lib/Doctrine/ORM/Tools/Cli/CliController.php | 11 ++++--- 2 files changed, 39 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php b/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php index a683328d4..93faa359c 100644 --- a/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php +++ b/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php @@ -46,6 +46,38 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager } } + public function dropDatabase($database) + { + $params = $this->_conn->getParams(); + $params["dbname"] = "postgres"; + $tmpPlatform = $this->_platform; + $tmpConn = $this->_conn; + + $this->_conn = \Doctrine\DBAL\DriverManager::getConnection($params); + $this->_platform = $this->_conn->getDatabasePlatform(); + + parent::dropDatabase($database); + + $this->_platform = $tmpPlatform; + $this->_conn = $tmpConn; + } + + public function createDatabase($database) + { + $params = $this->_conn->getParams(); + $params["dbname"] = "postgres"; + $tmpPlatform = $this->_platform; + $tmpConn = $this->_conn; + + $this->_conn = \Doctrine\DBAL\DriverManager::getConnection($params); + $this->_platform = $this->_conn->getDatabasePlatform(); + + parent::createDatabase($database); + + $this->_platform = $tmpPlatform; + $this->_conn = $tmpConn; + } + protected function _getPortableTriggerDefinition($trigger) { return $trigger['trigger_name']; diff --git a/lib/Doctrine/ORM/Tools/Cli/CliController.php b/lib/Doctrine/ORM/Tools/Cli/CliController.php index 0dbd0c453..1c673f4d5 100644 --- a/lib/Doctrine/ORM/Tools/Cli/CliController.php +++ b/lib/Doctrine/ORM/Tools/Cli/CliController.php @@ -236,10 +236,13 @@ class CliController * ), * ), * 1 => array( - * 'option' => true, - * 'a' => 'value', - * 'optArr' => array( - * 'value1', 'value2' + * 'name' => 'bar', + * 'args' => array( + * 'option' => true, + * 'a' => 'value', + * 'optArr' => array( + * 'value1', 'value2' + * ), * ), * ), * )