1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

A fix and a test case for Bug#11183 "mysql_stmt_reset() doesn't reset

information about error".
This commit is contained in:
konstantin@mysql.com
2005-07-14 20:02:33 +04:00
parent 3892f1d298
commit a1270b65db
2 changed files with 57 additions and 0 deletions

View File

@ -1834,6 +1834,17 @@ static void net_clear_error(NET *net)
}
}
static void stmt_clear_error(MYSQL_STMT *stmt)
{
if (stmt->last_errno)
{
stmt->last_errno= 0;
stmt->last_error[0]= '\0';
strmov(stmt->sqlstate, not_error_sqlstate);
}
}
/*
Set statement error code, sqlstate, and error message
from given errcode and sqlstate.
@ -4625,6 +4636,7 @@ my_bool STDCALL mysql_stmt_reset(MYSQL_STMT *stmt)
param < param_end;
param++)
param->long_data_used= 0;
stmt_clear_error(stmt);
DBUG_RETURN(0);
}