added PMA_StorageEngine::getMysqlHelpPage()
This commit is contained in:
@@ -325,6 +325,17 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
|
|||||||
|
|
||||||
return $this->$id();
|
return $this->$id();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns string with filename for the MySQL helppage
|
||||||
|
* about this storage engne
|
||||||
|
*
|
||||||
|
* @return string mysql helppage filename
|
||||||
|
*/
|
||||||
|
function getMysqlHelpPage()
|
||||||
|
{
|
||||||
|
return 'innodb';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@@ -284,6 +284,17 @@ class PMA_StorageEngine
|
|||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns string with filename for the MySQL helppage
|
||||||
|
* about this storage engne
|
||||||
|
*
|
||||||
|
* @return string mysql helppage filename
|
||||||
|
*/
|
||||||
|
function getMysqlHelpPage()
|
||||||
|
{
|
||||||
|
return $this->engine . '-storage-engine';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* public string getVariablesLikePattern()
|
* public string getVariablesLikePattern()
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user