summaryrefslogtreecommitdiff
path: root/scripts/mysql_explain_log.sh
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-09-17 23:46:53 +0300
committermonty@mashka.mysql.fi <>2002-09-17 23:46:53 +0300
commit7f55d9263749ec0b0c8dacea1fd1616c0262bd5e (patch)
treec51e7c970efa7653918302f4513422428385158d /scripts/mysql_explain_log.sh
parent3bb2660d1047f33988ae9703dd8172d059037fdc (diff)
downloadmariadb-git-7f55d9263749ec0b0c8dacea1fd1616c0262bd5e.tar.gz
fixed so that --ssl and --skip-ssl works with the MySQL clients.
Fixed core dump bug when sending wrong string to AES_DECRYPT()
Diffstat (limited to 'scripts/mysql_explain_log.sh')
-rw-r--r--scripts/mysql_explain_log.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_explain_log.sh b/scripts/mysql_explain_log.sh
index d7f6bb97b40..c4a4ef21568 100644
--- a/scripts/mysql_explain_log.sh
+++ b/scripts/mysql_explain_log.sh
@@ -279,7 +279,7 @@ sub RunQuery {
if (defined $row->{$_}) {
#if (($_ eq 'type' ) and ($row->{$_} eq 'ALL')) {
if ($row->{type} eq 'ALL') {
- push (@{$Param->{ALL}}, "$row->{$_} $_ $Param->{DB} $Param->{Query}");
+ push (@{$Param->{ALL}}, "$Param->{Query}");
#print ">> $row->{$_} $_ $Param->{DB} $Param->{Query}\n";
}
$Param->{IdxUseCount} ++;