1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for Bug#56138 "valgrind errors about overlapping memory when double-assigning same variable",

and related small fixes.
This commit is contained in:
Guilhem Bichot
2010-11-22 09:57:59 +01:00
parent 871930e708
commit b5586c67ec
5 changed files with 19 additions and 8 deletions

View File

@ -346,4 +346,11 @@ FROM t1 GROUP BY a LIMIT 1;
DROP TABLE t1;
#
# BUG#56138 "valgrind errors about overlapping memory when
# double-assigning same variable"
#
select @v:=@v:=sum(1) from dual;
--echo End of 5.1 tests