Commit 36d3f48c authored by unknown's avatar unknown

Changed test to be independent on scan order

parent cd44553c
...@@ -134,20 +134,21 @@ a INT NOT NULL PRIMARY KEY, ...@@ -134,20 +134,21 @@ a INT NOT NULL PRIMARY KEY,
b INT NOT NULL b INT NOT NULL
) ENGINE=ndbcluster; ) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (0,1),(17,18); INSERT INTO t1 VALUES (0,1),(17,18);
select * from t1; select * from t1 order by a;
a b a b
17 18
0 1 0 1
17 18
alter table t1 add c int not null unique auto_increment; alter table t1 add c int not null unique auto_increment;
select * from t1 order by a; select c from t1 order by c;
a b c c
0 1 2 1
17 18 1 2
INSERT INTO t1 VALUES (18,19,3),(20,21,0); INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0);
select * from t1 order by a; select c from t1 order by c;
a b c c
0 1 2 1
17 18 1 2
18 19 3 3
20 21 4 4
5
drop table t1; drop table t1;
...@@ -107,11 +107,11 @@ CREATE TABLE t1 ( ...@@ -107,11 +107,11 @@ CREATE TABLE t1 (
) ENGINE=ndbcluster; ) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (0,1),(17,18); INSERT INTO t1 VALUES (0,1),(17,18);
select * from t1;
alter table t1 add c int not null unique auto_increment;
select * from t1 order by a;
INSERT INTO t1 VALUES (18,19,3),(20,21,0);
select * from t1 order by a; select * from t1 order by a;
alter table t1 add c int not null unique auto_increment;
select c from t1 order by c;
INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0);
select c from t1 order by c;
drop table t1; drop table t1;
#--disable_warnings #--disable_warnings
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment