Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / engines / memory.lib.php
blob8e9fe5fc8863f8963e3adadc73206d40adfe4b8e
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 function getVariables()
26 return array(
27 'max_heap_table_size' => array(
28 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,