A small bug fix in log::write

This commit is contained in:
Sinisa@sinisa.nasamreza.org 2002-08-30 15:03:31 +03:00
parent 845041c25a
commit ccade9a69a

View File

@ -1325,6 +1325,7 @@ bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
end=strxmov(buff, "# administrator command: ", end=strxmov(buff, "# administrator command: ",
command_name[thd->command], NullS); command_name[thd->command], NullS);
query_length=(ulong) (end-buff); query_length=(ulong) (end-buff);
query=buff;
} }
if (my_b_write(&log_file, (byte*) query,query_length) || if (my_b_write(&log_file, (byte*) query,query_length) ||
my_b_write(&log_file, (byte*) ";\n",2) || my_b_write(&log_file, (byte*) ";\n",2) ||