From eee95c09cbbff2136f106115e0f9e831c5df75bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Wed, 16 Sep 2015 18:17:54 +0200 Subject: [PATCH] Improve wording At first, I didn't get what this line tried to tell me and it seems I'm not the only person: https://www.google.ch/search?hl=de&q=%22Reduce+your+SELECT+DISTINCT+queries+without+LIMIT+clauses%22&gws_rd=ssl --- mysqltuner.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 9bf4622..ae9ee9e 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -2407,7 +2407,7 @@ sub mysql_stats { "When making adjustments, make tmp_table_size/max_heap_table_size equal" ); push( @generalrec, - "Reduce your SELECT DISTINCT queries without LIMIT clauses" ); + "Reduce your SELECT DISTINCT queries which have no LIMIT clause" ); } elsif ($mycalc{'pct_temp_disk'} > 25 && $mycalc{'max_tmp_table_size'} >= 256 * 1024 * 1024 ) @@ -3555,4 +3555,4 @@ along with this program. If not, see . # indent-tabs-mode: t # cperl-indent-level: 8 # perl-indent-level: 8 -# End: \ No newline at end of file +# End: