avoid showing MyBS as a normal storage engine for table creation or alter

This commit is contained in:
Marc Delisle
2008-07-21 15:18:48 +00:00
parent 7146b10226
commit 3ca63679fe

View File

@@ -91,6 +91,12 @@ class PMA_StorageEngine
&& ($details['Support'] == 'NO' || $details['Support'] == 'DISABLED')) {
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). '"'
. (empty($details['Comment'])
? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')