From 95aa9da9efb0ad7a8264293854a826511cc30196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu> Date: Thu, 24 Jan 2008 10:59:29 +0000 Subject: [PATCH] #107375 follow up by zeta-zoo: fixed incorrect description for MySQL's 'Select_range_check' --- modules/system/system.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index c48928041ecb..8db57c8244c9 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.') -- GitLab