Commit 056c71f1 authored by unknown's avatar unknown

memory leak fixed

parent 8ff92c30
...@@ -109,6 +109,6 @@ update t1 set b=4 where a=1 order by b desc limit 1; ...@@ -109,6 +109,6 @@ update t1 set b=4 where a=1 order by b desc limit 1;
select * from t1; select * from t1;
a b a b
1 4 1 4
1 4
1 2 1 2
1 4
drop table t1; drop table t1;
...@@ -335,5 +335,6 @@ int mysql_update(THD *thd, ...@@ -335,5 +335,6 @@ int mysql_update(THD *thd,
DBUG_PRINT("info",("%d records updated",updated)); DBUG_PRINT("info",("%d records updated",updated));
} }
thd->count_cuted_fields=0; /* calc cuted fields */ thd->count_cuted_fields=0; /* calc cuted fields */
free_io_cache(table);
DBUG_RETURN(0); DBUG_RETURN(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