diff options
author | unknown <mskold@mysql.com> | 2005-11-17 12:45:23 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-11-17 12:45:23 +0100 |
commit | a710414c87d08b27945ab8f22d273255f5a2ea64 (patch) | |
tree | b556536632c5fe529da31a999c15a7091c8bdeb2 /mysql-test/t/ndb_alter_table.test | |
parent | 3a5a518de42c8c23b7b80d1ae716424e23748463 (diff) | |
download | mariadb-git-a710414c87d08b27945ab8f22d273255f5a2ea64.tar.gz |
Fixed incorrectly use if table with wrong schema version
Diffstat (limited to 'mysql-test/t/ndb_alter_table.test')
-rw-r--r-- | mysql-test/t/ndb_alter_table.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_alter_table.test b/mysql-test/t/ndb_alter_table.test index 5c792f76316..3cd363fb6e8 100644 --- a/mysql-test/t/ndb_alter_table.test +++ b/mysql-test/t/ndb_alter_table.test @@ -147,6 +147,8 @@ select * from t1 where b = 'two'; connection server1; alter table t1 drop index c; connection server2; +# This should fail since index information is not automatically refreshed +--error 1105 select * from t1 where b = 'two'; select * from t1 where b = 'two'; connection server1; |