Set DisableIS = false for Drizzle

This commit is contained in:
Piotr Przybylski 2011-05-04 14:57:58 +02:00
parent e6211f0c2f
commit 315e35c077

View File

@ -924,6 +924,13 @@ if (! defined('PMA_MINIMUM_COMMON')) {
PMA_fatalError(__('You should upgrade to %s %s or later.'), array('MySQL', '5.0.15'));
}
/**
* DisableIS must be set to false for Drizzle, it maps SHOW commands to IS queries anyway
*/
if (PMA_DRIZZLE && $cfg['Server']['DisableIS']) {
$cfg['Server']['DisableIS'] = false;
}
/**
* SQL Parser code
*/