Skip to content
Snippets Groups Projects
Commit 95aa9da9 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#107375 follow up by zeta-zoo: fixed incorrect description for MySQL's 'Select_range_check'

parent b299b9ee
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment