mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Making multi-table delete BETA !!
mysql-test/t/multi_update.test: Making a test change the order of the tables, so that initalize_tables would be tested properly mysys/my_compress.c: Just changed my e-mail address .... ;o) sql/filesort.cc: Making sure that merge_buffers can not be killed sql/sql_class.h: Added initialize_tables sql/sql_delete.cc: Making final changes for multi table delete, beta version !! sql/sql_select.cc: same as above BitKeeper/etc/ignore: Added locked to the ignore list
This commit is contained in:
@ -7,7 +7,7 @@ eval select $BIG_TEST as using_big_test;
|
||||
|
||||
drop table if exists t1,t2,t3;
|
||||
create table t1(id1 int not null auto_increment primary key, t char(12));
|
||||
create table t2(id2 int not null, t char(12), index(id2));
|
||||
create table t2(id2 int not null, t char(12));
|
||||
create table t3(id3 int not null, t char(12), index(id3));
|
||||
let $1 = 10000;
|
||||
while ($1)
|
||||
|
Reference in New Issue
Block a user