Commit 761ae02c authored by unknown's avatar unknown

Followup to Bug#5985: fixing one thing that went wrong.

parent 55c1b794
...@@ -3883,6 +3883,7 @@ mysql_init_query(THD *thd, uchar *buf, uint length) ...@@ -3883,6 +3883,7 @@ mysql_init_query(THD *thd, uchar *buf, uint length)
void mysql_reset_thd_for_next_command(THD *thd) void mysql_reset_thd_for_next_command(THD *thd)
{ {
DBUG_ENTER("mysql_reset_thd_for_next_command"); DBUG_ENTER("mysql_reset_thd_for_next_command");
thd->free_list= 0;
thd->select_number= 1; thd->select_number= 1;
thd->total_warn_count= 0; // Warnings for this query thd->total_warn_count= 0; // Warnings for this query
thd->last_insert_id_used= thd->query_start_used= thd->insert_id_used=0; thd->last_insert_id_used= thd->query_start_used= thd->insert_id_used=0;
......
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