Commit cbdc730a authored by unknown's avatar unknown

Fixed timeing problem by ignoring failures and results from first select after...

Fixed timeing problem by ignoring failures and results from first select after table definition change


mysql-test/r/ndb_alter_table2.result:
  Fixed timeing problem by ignoring failures and results from first select after table definition changethe
mysql-test/r/ndb_alter_table_stm.result:
  Fixed timeing problem by ignoring failures and results from first select after table definition changethe
parent 97cddd4a
......@@ -28,7 +28,6 @@ b INT NOT NULL,
c INT NOT NULL
) ENGINE=ndbcluster;
select * from t1;
a b c
select * from t1;
a b c
select * from t1;
......
......@@ -8,6 +8,7 @@ a b c
2 two two
alter table t1 drop index c;
select * from t1 where c = 'two';
select * from t1 where c = 'two';
a b c
2 two two
drop table t1;
......
......@@ -72,7 +72,10 @@ CREATE TABLE t1 (
connection server1;
--disable_result_log
--error 0,1412
select * from t1;
--enable_result_log
select * from t1;
select * from t1;
select * from t1;
......
......@@ -17,6 +17,12 @@ select * from t1 where c = 'two';
connection server1;
alter table t1 drop index c;
connection server2;
--disable_result_log
--error 0,1412
select * from t1 where c = 'two';
--enable_result_log
select * from t1 where c = 'two';
connection server1;
drop table t1;
......
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