Changed test to be independent on scan order

This commit is contained in:
unknown 2004-10-01 14:23:31 +02:00
commit 4103f23150
2 changed files with 18 additions and 17 deletions

View file

@ -134,20 +134,21 @@ a INT NOT NULL PRIMARY KEY,
b INT NOT NULL
) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (0,1),(17,18);
select * from t1;
select * from t1 order by a;
a b
17 18
0 1
17 18
alter table t1 add c int not null unique auto_increment;
select * from t1 order by a;
a b c
0 1 2
17 18 1
INSERT INTO t1 VALUES (18,19,3),(20,21,0);
select * from t1 order by a;
a b c
0 1 2
17 18 1
18 19 3
20 21 4
select c from t1 order by c;
c
1
2
INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0);
select c from t1 order by c;
c
1
2
3
4
5
drop table t1;