diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2003-04-29 14:13:22 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2003-04-29 14:13:22 +0300 |
commit | 38b70f0608fbd8f5c3f25fba16c2887611311803 (patch) | |
tree | a85e63289d9f2182e429704d6311001d738e4f9c /mysql-test | |
parent | 8ae605d7eefe1316d17ad59ff346592044a2fa54 (diff) | |
download | mariadb-git-38b70f0608fbd8f5c3f25fba16c2887611311803.tar.gz |
code cleanup
mysql-test/r/innodb.result:
fixing result
mysql-test/t/innodb.test:
fixing test
sql/sql_base.cc:
committing a fix in order to pull new stuff
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/innodb.result | 1 | ||||
-rw-r--r-- | mysql-test/t/innodb.test | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index aefcd135dd8..39214348244 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1219,6 +1219,7 @@ parent child 1 2 1 3 2 1 +drop table t1; create table t1 (a int not null auto_increment primary key, b int, c int, key(c)) type=innodb; create table t2 (a int not null auto_increment primary key, b int); insert into t1 (b) values (null),(null),(null),(null),(null),(null),(null); diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index 393112beb27..4fb9351020e 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -809,7 +809,7 @@ drop table t1,t2; create table t1 ( pk int primary key, parent int not null, child int not null, index (parent) ) type = innodb; insert into t1 values (1,0,4), (2,1,3), (3,2,1), (4,1,2); select distinct parent,child from t1 order by parent; -drop table t1,t2; +drop table t1; # # Test that MySQL priorities clustered indexes |