1. Check existence of mb_string, mysql and xml extensions before installation.
[openemr.git] / phpmyadmin / libraries / engines / memory.lib.php
blob074eb2e01ff507c67423f1ca9655d94d2f8b8892
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * The MEMORY (HEAP) storage engine
6 * @package PhpMyAdmin-Engines
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /**
13 * The MEMORY (HEAP) storage engine
15 * @package PhpMyAdmin-Engines
17 class PMA_StorageEngine_Memory extends PMA_StorageEngine
19 /**
20 * Returns array with variable names dedicated to MEMORY storage engine
22 * @return array variable names
24 public function getVariables()
26 return array(
27 'max_heap_table_size' => array(
28 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,