diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-24 10:59:29 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-24 10:59:29 +0000 |
commit | 95aa9da9efb0ad7a8264293854a826511cc30196 (patch) | |
tree | e8142b689141cfeaddd7cb2fb89a619f8ac809c4 /modules/system/system.admin.inc | |
parent | b299b9ee21b42a6cd43b58109a4382e346d58cdf (diff) | |
download | brdo-95aa9da9efb0ad7a8264293854a826511cc30196.tar.gz brdo-95aa9da9efb0ad7a8264293854a826511cc30196.tar.bz2 |
#107375 follow up by zeta-zoo: fixed incorrect description for MySQL's 'Select_range_check'
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index c48928041..8db57c824 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1774,7 +1774,7 @@ function system_sql() { $output .= '<h2>'. t('Query performance') .'</h2>'; $output .= _system_sql($data, array( 'Select_full_join' => t('The number of joins without an index; should be zero.'), - 'Select_range_check' => t('The number of joins without an index; should be zero.'), + 'Select_range_check' => t('The number of joins without keys that check for key usage after each row; should be zero.'), 'Sort_scan' => t('The number of sorts done without using an index; should be zero.'), 'Table_locks_immediate' => t('The number of times a lock could be acquired immediately.'), 'Table_locks_waited' => t('The number of times the server had to wait for a lock.') |