1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
libmysqld/lib_sql.cc:
  net->sqlstate should be initialized here
This commit is contained in:
unknown
2003-10-06 17:06:05 +05:00
parent 01cb13912b
commit c479f5d397

View File

@ -95,7 +95,10 @@ emb_advanced_command(MYSQL *mysql, enum enum_server_command command,
memcpy(net->sqlstate, thd->net.sqlstate, sizeof(net->sqlstate));
}
else
{
net->last_error[0]= 0;
strmov(net->sqlstate, not_error_sqlstate);
}
mysql->warning_count= ((THD*)mysql->thd)->total_warn_count;
return result;
}