From 4469b64e4e86b1183934e5257eeeb90bfe8087af Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 12 Apr 2008 13:27:18 +0000 Subject: [PATCH] RENAME DATABASE removed in 5.1.23 --- db_operations.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/db_operations.php b/db_operations.php index ad266aafc..75176781e 100644 --- a/db_operations.php +++ b/db_operations.php @@ -39,12 +39,11 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { (isset($create_database_before_copying) && $create_database_before_copying)) { /** * @todo activate this with the correct version of MySQL - * when they fix the problem when the db contains a VIEW - * (problem exists in 5.1.20) - * also, in 6.0.0 when the db contains a Falcon table, - * renaming it results in a unusable db! + * if/when they offer this functionality + * + * Note: RENAME DATABASE was removed in 5.1.23 */ - //if (PMA_MYSQL_INT_VERSION >= 50107) { + //if (PMA_MYSQL_INT_VERSION >= XYYZZ) { // $local_query = 'RENAME DATABASE ' . PMA_backquote($db) . ' TO ' . PMA_backquote($newname) . ';'; // $sql_query = $local_query; // PMA_DBI_query($local_query); @@ -293,7 +292,7 @@ if (!$is_information_schema) { /** * @todo (see explanations above in a previous todo) */ - //if (PMA_MYSQL_INT_VERSION >= 50107) { + //if (PMA_MYSQL_INT_VERSION >= XYYZZ) { // echo 'RENAME DATABASE'; //} else { echo 'INSERT INTO ... SELECT';