summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2006-01-17 12:53:49 +0100
committerunknown <mskold@mysql.com>2006-01-17 12:53:49 +0100
commit8656d587ba9a9363fc3be2400ca2f3cca27db3de (patch)
tree8f047d743a543bb5fd3163e3ff3a7921be6f9d17 /mysql-test/t
parentebf577974ed8772ea14b45a524ae158a00172260 (diff)
downloadmariadb-git-8656d587ba9a9363fc3be2400ca2f3cca27db3de.tar.gz
Additional fixes for WL#1892
sql/ha_ndbcluster.cc: Additional fixes for WL#1892, disable autodiscover during add/drop index sql/ha_ndbcluster.h: Additional fixes for WL#1892, disable autodiscover during add/drop index sql/sql_table.cc: Additional fixes for WL#1892, removed double commit + added call to create_handler_files after create/drop index mysql-test/r/ndb_alter_table_row.result: Additional fixes for WL#1892, changed test case mysql-test/t/ndb_alter_table_row.test: Additional fixes for WL#1892, changed test case
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/ndb_alter_table_row.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_alter_table_row.test b/mysql-test/t/ndb_alter_table_row.test
index 5dbfa26289b..a48d17ec02a 100644
--- a/mysql-test/t/ndb_alter_table_row.test
+++ b/mysql-test/t/ndb_alter_table_row.test
@@ -17,6 +17,8 @@ select * from t1 where c = 'two';
connection server1;
alter table t1 drop index c;
connection server2;
+--error 1412
+select * from t1 where c = 'two';
select * from t1 where c = 'two';
connection server1;
drop table t1;