Commit 8cd64ad2 authored by unknown's avatar unknown

Fix DBUG_PRINT in mysqltest, the real value to print is in ds_cmd


client/mysqltest.c:
  The expanded command executed by mysqltest is in ds_cmd
parent cb404c2d
......@@ -1511,7 +1511,7 @@ void do_exec(struct st_command *command)
do_eval(&ds_cmd, cmd, command->end, TRUE);
DBUG_PRINT("info", ("Executing '%s' as '%s'",
command->first_argument, cmd));
command->first_argument, ds_cmd.str));
if (!(res_file= my_popen(&ds_cmd, "r")) && command->abort_on_error)
die("popen(\"%s\", \"r\") failed", command->first_argument);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment