summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2005-11-25 10:41:22 +0100
committerunknown <mskold@mysql.com>2005-11-25 10:41:22 +0100
commite1af5e5dfd302b03b12e897812ecbb7befb98c3d (patch)
tree52e9bcff86595f0c67d6d7491b2d842fb670e19a
parentc3423d0d919f822581c82c520c86418893d589f1 (diff)
downloadmariadb-git-e1af5e5dfd302b03b12e897812ecbb7befb98c3d.tar.gz
Updated expected error
-rw-r--r--mysql-test/r/ndb_alter_table.result2
-rw-r--r--mysql-test/t/ndb_alter_table.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ndb_alter_table.result b/mysql-test/r/ndb_alter_table.result
index 62e8455ae9f..b5fceba7cee 100644
--- a/mysql-test/r/ndb_alter_table.result
+++ b/mysql-test/r/ndb_alter_table.result
@@ -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
diff --git a/mysql-test/t/ndb_alter_table.test b/mysql-test/t/ndb_alter_table.test
index d89b81859e7..22383a82bca 100644
--- a/mysql-test/t/ndb_alter_table.test
+++ b/mysql-test/t/ndb_alter_table.test
@@ -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;