Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / libraries / engines / myisam.lib.php
blob8ec7a60a4f06af1d05ef0b51df670c28b999669d
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @version $Id$
5 */
7 /**
8 * the MyISAM storage engine
9 */
10 class PMA_StorageEngine_myisam extends PMA_StorageEngine
12 /**
13 * returns array with variable names dedicated to MyISAM storage engine
15 * @return array variable names
17 function getVariables()
19 return array(
20 'myisam_data_pointer_size' => array(
21 'title' => $GLOBALS['strMyISAMDataPointerSize'],
22 'desc' => $GLOBALS['strMyISAMDataPointerSizeDesc'],
23 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
25 'myisam_recover_options' => array(
26 'title' => $GLOBALS['strMyISAMRecoverOptions'],
27 'desc' => $GLOBALS['strMyISAMRecoverOptionsDesc'],
29 'myisam_max_sort_file_size' => array(
30 'title' => $GLOBALS['strMyISAMMaxSortFileSize'],
31 'desc' => $GLOBALS['strMyISAMMaxSortFileSizeDesc'],
32 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
34 'myisam_max_extra_sort_file_size' => array(
35 'title' => $GLOBALS['strMyISAMMaxExtraSortFileSize'],
36 'desc' => $GLOBALS['strMyISAMMaxExtraSortFileSizeDesc'],
37 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
39 'myisam_repair_threads' => array(
40 'title' => $GLOBALS['strMyISAMRepairThreads'],
41 'desc' => $GLOBALS['strMyISAMRepairThreadsDesc'],
42 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
44 'myisam_sort_buffer_size' => array(
45 'title' => $GLOBALS['strMyISAMSortBufferSize'],
46 'desc' => $GLOBALS['strMyISAMSortBufferSizeDesc'],
47 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
49 'myisam_stats_method' => array(
51 'delay_key_write' => array(
53 'bulk_insert_buffer_size' => array(
54 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE,
56 'skip_external_locking' => array(