From c45c3e8331bd525bafef41db537b3c9860be2bd4 Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 13 Jun 2007 22:03:30 +0000 Subject: [PATCH] --- lib/Doctrine/Export/Mssql.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/Doctrine/Export/Mssql.php b/lib/Doctrine/Export/Mssql.php index 557dcc4e4..120408881 100644 --- a/lib/Doctrine/Export/Mssql.php +++ b/lib/Doctrine/Export/Mssql.php @@ -62,6 +62,18 @@ class Doctrine_Export_Mssql extends Doctrine_Export $name = $this->conn->quoteIdentifier($name, true); return $this->conn->standaloneQuery('DROP DATABASE ' . $name, null, true); } + + /** + * Override the parent method. + * + * @return string The string required to be placed between "CREATE" and "TABLE" + * to generate a temporary table, if possible. + */ + public function getTemporaryTableQuery() + { + return ''; + } + /** * alter an existing table *