Commit 9fffa937 authored by Sergei Golubchik's avatar Sergei Golubchik

mysqltest: use do_stmt_close() not mysql_stmt_close()

do_stmt_close() is embedded-aware.

this fixes the failure of innodb.innodb_bug48024 --ps --embed
parent 587568b7
...@@ -1418,7 +1418,7 @@ void close_statements() ...@@ -1418,7 +1418,7 @@ void close_statements()
for (con= connections; con < next_con; con++) for (con= connections; con < next_con; con++)
{ {
if (con->stmt) if (con->stmt)
mysql_stmt_close(con->stmt); do_stmt_close(con);
con->stmt= 0; con->stmt= 0;
} }
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
......
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