From ce6e8cdf8dbacf14e7571729466b3cf7bb5e7f42 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Thu, 8 Sep 2022 12:46:10 +0300 Subject: [PATCH] Update mysqltuner.pl Abbreviation have been added to the human_size function to display the size of partitions on a server with terabytes. --- mysqltuner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index a6f727e..acd6668 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -1019,7 +1019,7 @@ sub select_array { sub human_size { my ( $size, $n ) = ( shift, 0 ); ++$n and $size /= 1024 until $size < 1024; - return sprintf "%.2f %s", $size, (qw[ bytes KB MB GB ])[$n]; + return sprintf "%.2f %s", $size, (qw[ bytes KB MB GB TB ])[$n]; } # MySQL Request one