removed MySQL < 5 code

This commit is contained in:
Sebastian Mendel
2007-10-02 08:38:17 +00:00
parent 659a9ae2de
commit d8a71a539f

View File

@@ -129,7 +129,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/** /**
* @uses $this->support * @uses $this->support
* @uses PMA_ENGINE_SUPPORT_YES * @uses PMA_ENGINE_SUPPORT_YES
* @uses PMA_MYSQL_INT_VERSION
* @uses $GLOBALS['strBufferPool'] * @uses $GLOBALS['strBufferPool']
* @uses $GLOBALS['strInnodbStat'] * @uses $GLOBALS['strInnodbStat']
* @return array detail pages * @return array detail pages
@@ -140,9 +139,7 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
return array(); return array();
} }
$pages = array(); $pages = array();
if (PMA_MYSQL_INT_VERSION >= 50002) { $pages['Bufferpool'] = $GLOBALS['strBufferPool'];
$pages['Bufferpool'] = $GLOBALS['strBufferPool'];
}
$pages['Status'] = $GLOBALS['strInnodbStat']; $pages['Status'] = $GLOBALS['strInnodbStat'];
return $pages; return $pages;
} }
@@ -150,7 +147,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/** /**
* returns html tables with stats over inno db buffer pool * returns html tables with stats over inno db buffer pool
* *
* @uses PMA_MYSQL_INT_VERSION
* @uses PMA_DBI_fetch_result() * @uses PMA_DBI_fetch_result()
* @uses PMA_formatNumber() * @uses PMA_formatNumber()
* @uses PMA_formatByteDown() * @uses PMA_formatByteDown()
@@ -177,9 +173,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
*/ */
function getPageBufferpool() function getPageBufferpool()
{ {
if (PMA_MYSQL_INT_VERSION < 50002) {
return false;
}
// rabus: The following query is only possible because we know // rabus: The following query is only possible because we know
// that we are on MySQL 5 here (checked above)! // that we are on MySQL 5 here (checked above)!
// side note: I love MySQL 5 for this. :-) // side note: I love MySQL 5 for this. :-)