mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Copy arguments given to mysql_server_init()
Made keybuff_size longlong (To make show variables work similar on 32 and 64 bit systems) Fixed some 'not initalized variable errors' in multi-table-update. Fixed memory leak in multi-table-update. Now all tests works under valgrind without any errors.
This commit is contained in:
@ -72,6 +72,11 @@ id val elt(two.val,'one','two')
|
||||
2 1 one
|
||||
4 2 two
|
||||
drop table t1,t2;
|
||||
create temporary table t1 (a int not null);
|
||||
insert into t1 values (1),(1);
|
||||
alter table t1 add primary key (a);
|
||||
Duplicate entry '1' for key 1
|
||||
drop table t1;
|
||||
drop table if exists t1;
|
||||
CREATE TABLE t1 (
|
||||
d datetime default NULL
|
||||
|
Reference in New Issue
Block a user