Rev Author Line No. Line
250 kaklik 1 <?php
2 /* $Id: memory.lib.php,v 1.1 2005/12/07 10:01:43 cybot_tm Exp $ */
3 // vim: expandtab sw=4 ts=4 sts=4:
4 /**
5 * the MEMORY (HEAP) storage engine
6 */
7 class PMA_StorageEngine_memory extends PMA_StorageEngine
8 {
9 /**
10 * returns array with variable names dedicated to MyISAM storage engine
11 *
12 * @return array variable names
13 */
14 function getVariables()
15 {
16 return array(
17 'max_heap_table_size' => array(
18 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
19 ),
20 );
21 }
22 }
23  
24 ?>