bug #2461735 [operations] Table operations adds "row_format"

This commit is contained in:
Marc Delisle
2008-12-23 18:15:56 +00:00
parent dcd146adfe
commit 38154059fe
2 changed files with 2 additions and 1 deletions

View File

@@ -142,7 +142,7 @@ if (isset($_REQUEST['submitoptions'])) {
if (($is_myisam_or_maria || $is_innodb || $is_pbxt)
&& ! empty($_REQUEST['new_row_format'])
&& (! isset($row_format) || $_REQUEST['new_row_format'] !== $row_format)) {
&& (! isset($row_format) || strtolower($_REQUEST['new_row_format']) !== strtolower($row_format))) {
$table_alters[] = 'ROW_FORMAT = ' . PMA_sqlAddslashes($_REQUEST['new_row_format']);
}