Commit cbdc730a authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
+1 −0
Original line number Diff line number Diff line
@@ -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;
+3 −0
Original line number Diff line number Diff line
@@ -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;
+6 −0
Original line number Diff line number Diff line
@@ -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;