Add IF NOT EXISTS to CREATE DATABASE query (RFE #1608372), reload navigation after...
[phpmyadmin/last10db.git] / libraries / engines / myisam.lib.php
blob8fff62bbaf824f2b86b52618f45ef2872e9622cc
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
4 /**
5 * the MyISAM storage engine
6 */
7 class PMA_StorageEngine_myisam extends PMA_StorageEngine
9 /**
10 * returns array with variable names dedicated to MyISAM storage engine
12 * @return array variable names
14 function getVariables()
16 return array(
17 'myisam_data_pointer_size' => array(
18 'title' => $GLOBALS['strMyISAMDataPointerSize'],
19 'desc' => $GLOBALS['strMyISAMDataPointerSizeDesc'],
20 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
22 'myisam_recover_options' => array(
23 'title' => $GLOBALS['strMyISAMRecoverOptions'],
24 'desc' => $GLOBALS['strMyISAMRecoverOptionsDesc'],
26 'myisam_max_sort_file_size' => array(
27 'title' => $GLOBALS['strMyISAMMaxSortFileSize'],
28 'desc' => $GLOBALS['strMyISAMMaxSortFileSizeDesc'],
29 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
31 'myisam_max_extra_sort_file_size' => array(
32 'title' => $GLOBALS['strMyISAMMaxExtraSortFileSize'],
33 'desc' => $GLOBALS['strMyISAMMaxExtraSortFileSizeDesc'],
34 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
36 'myisam_repair_threads' => array(
37 'title' => $GLOBALS['strMyISAMRepairThreads'],
38 'desc' => $GLOBALS['strMyISAMRepairThreadsDesc'],
39 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
41 'myisam_sort_buffer_size' => array(
42 'title' => $GLOBALS['strMyISAMSortBufferSize'],
43 'desc' => $GLOBALS['strMyISAMSortBufferSizeDesc'],
44 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
46 'myisam_stats_method' => array(
48 'delay_key_write' => array(
50 'bulk_insert_buffer_size' => array(
51 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
53 'skip_external_locking' => array(