diff --git a/libraries/common.inc.php b/libraries/common.inc.php index ef6f64b6c9..90788998a1 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -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 */