The branch, master has been updated via 3acae146b926f20656e443a10decc33d80e0b595 (commit) from 1b5691656ef67e5f07c5e218f2dacc6d36ae0a77 (commit)
- Log ----------------------------------------------------------------- commit 3acae146b926f20656e443a10decc33d80e0b595 Author: Piotr Przybylski piotrprz@gmail.com Date: Mon Jul 18 23:37:14 2011 +0200
Use default engine for tables created during data import
-----------------------------------------------------------------------
Summary of changes: libraries/import.lib.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libraries/import.lib.php b/libraries/import.lib.php index e2cbdd2..5b8af20 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -936,7 +936,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = $tempSQLStr .= ", "; } } - $tempSQLStr .= ") ENGINE=MyISAM DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation . ";"; + $tempSQLStr .= ") DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation . ";";
/** * Each SQL statement is executed immediately
hooks/post-receive