avoid showing MyBS as a normal storage engine for table creation or alter
This commit is contained in:
@@ -91,6 +91,12 @@ class PMA_StorageEngine
|
|||||||
&& ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) {
|
&& ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
// currently (MySQL 5.1.26) there is no way we can be informed
|
||||||
|
// that MyBS does not support normal table creation so
|
||||||
|
// we use an exception here
|
||||||
|
if ('MyBS' == $details['Engine']) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$output .= ' <option value="' . htmlspecialchars($key). '"'
|
$output .= ' <option value="' . htmlspecialchars($key). '"'
|
||||||
. (empty($details['Comment'])
|
. (empty($details['Comment'])
|
||||||
? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')
|
? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')
|
||||||
|
Reference in New Issue
Block a user