diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2001-07-01 13:20:53 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2001-07-01 13:20:53 +0300 |
commit | b291238171449fd01fb50b13631719382a73857c (patch) | |
tree | f2785b9a6d7f6fe212e25974e6b66f44abef861f /mysql-test/t/multi_update.test | |
parent | f246b619153704f78ecc60361470f3f664fc6493 (diff) | |
download | mariadb-git-b291238171449fd01fb50b13631719382a73857c.tar.gz |
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
Diffstat (limited to 'mysql-test/t/multi_update.test')
-rw-r--r-- | mysql-test/t/multi_update.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/multi_update.test b/mysql-test/t/multi_update.test index 0ab255a9532..7959b67ee9c 100644 --- a/mysql-test/t/multi_update.test +++ b/mysql-test/t/multi_update.test @@ -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) |