1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Updated expected error

This commit is contained in:
unknown
2005-11-25 10:41:22 +01:00
parent c3423d0d91
commit e1af5e5dfd
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ a b c
2 two two
alter table t1 drop index c;
select * from t1 where b = 'two';
ERROR HY000: Table definition has changed, please retry transaction
ERROR HY000: Can't lock file (errno: 241)
select * from t1 where b = 'two';
a b c
2 two two

View File

@ -149,7 +149,7 @@ connection server1;
alter table t1 drop index c;
connection server2;
# This should fail since index information is not automatically refreshed
--error 1105
--error 1015
select * from t1 where b = 'two';
select * from t1 where b = 'two';
connection server1;