~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/phpmyadmin2.10.1/libraries/engines/memory.lib.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/* $Id: memory.lib.php 8100 2005-12-07 10:01:43Z cybot_tm $ */
 
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
?>