summaryrefslogtreecommitdiff
path: root/mysql-test/extra
diff options
context:
space:
mode:
authorunknown <ingo/mydev@chilla.local>2006-07-24 11:02:13 +0200
committerunknown <ingo/mydev@chilla.local>2006-07-24 11:02:13 +0200
commit99a4775cd403990475a11d25979c1ef4856cb9c6 (patch)
treee5bd1321d4cf35a508a89acf93e6f9c41d4630dd /mysql-test/extra
parent79ebad89c602368094aa506b69ec4c51f857f56e (diff)
downloadmariadb-git-99a4775cd403990475a11d25979c1ef4856cb9c6.tar.gz
After merge fix
Diffstat (limited to 'mysql-test/extra')
-rw-r--r--mysql-test/extra/binlog_tests/blackhole.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/extra/binlog_tests/blackhole.test b/mysql-test/extra/binlog_tests/blackhole.test
index 543f99936b6..78f3cf08e70 100644
--- a/mysql-test/extra/binlog_tests/blackhole.test
+++ b/mysql-test/extra/binlog_tests/blackhole.test
@@ -147,14 +147,4 @@ set autocommit=1;
--replace_regex /table_id: [0-9]+/table_id: #/
show binlog events;
-#
-# BUG#10952 - alter table ... lost data without errors and warnings
-#
-drop table if exists t1;
-create table t1 (c char(20)) engine=MyISAM;
-insert into t1 values ("Monty"),("WAX"),("Walrus");
---error 1031
-alter table t1 engine=blackhole;
-drop table t1;
-
# End of 5.0 tests