Merge remote-tracking branch 'origin/QA_4_4' into QA_4_4

This commit is contained in:
Weblate 2015-04-01 14:10:23 +02:00
commit 3a6dac8ba6
4 changed files with 5 additions and 4 deletions

View File

@ -13,6 +13,7 @@ phpMyAdmin - ChangeLog
- bug #4821 Timed-out import fails to restart when file represented
- bug #4754 pMA DB not detected properly
- bug #4825 Datepicker missing when changing number of rows on Insert page
- bug #4824 INNODB STATUS page is empty
4.4.0.0 (not yet released)
+ rfe #1553 InnoDB presently supports one FULLTEXT index creation at a time

View File

@ -94,7 +94,7 @@ $GLOBALS['dummy_queries'] = array(
)
),
array(
'query' => 'SHOW INNODB STATUS;',
'query' => 'SHOW ENGINE INNODB STATUS;',
'result' => false,
),
array(

View File

@ -316,13 +316,13 @@ class PMA_StorageEngine_Innodb extends PMA_StorageEngine
/**
* returns InnoDB status
*
* @return string result of SHOW INNODB STATUS inside pre tags
* @return string result of SHOW ENGINE INNODB STATUS inside pre tags
*/
public function getPageStatus()
{
return '<pre id="pre_innodb_status">' . "\n"
. htmlspecialchars(
$GLOBALS['dbi']->fetchValue('SHOW INNODB STATUS;', 0, 'Status')
$GLOBALS['dbi']->fetchValue('SHOW ENGINE INNODB STATUS;', 0, 'Status')
) . "\n"
. '</pre>' . "\n";
}

View File

@ -849,7 +849,7 @@ function PMA_SQP_parse($sql)
$t_suffix = '_reservedWord';
} elseif (isset($PMA_SQPdata_column_attrib[$d_cur_upper])) {
$t_suffix = '_columnAttrib';
// INNODB is a MySQL table type, but in "SHOW INNODB STATUS",
// INNODB is a MySQL table type, but in "SHOW ENGINE INNODB STATUS",
// it should be regarded as a reserved word.
if ($d_cur_upper == 'INNODB'
&& $d_prev_upper == 'SHOW'