Translated using Weblate (French)
[phpmyadmin.git] / libraries / engines / memory.lib.php
blob819b9c0663bc47bf1eb9bb6181d3b5644c97c736
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 if (! defined('PHPMYADMIN')) {
13 exit;
16 /**
17 * The MEMORY (HEAP) storage engine
19 * @package PhpMyAdmin-Engines
21 class PMA_StorageEngine_memory extends PMA_StorageEngine
23 /**
24 * Returns array with variable names dedicated to MEMORY storage engine
26 * @return array variable names
28 function getVariables()
30 return array(
31 'max_heap_table_size' => array(
32 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,