summaryrefslogtreecommitdiff
path: root/mysql-test/t/merge.test
diff options
context:
space:
mode:
authorunknown <ingo/mydev@chilla.local>2006-07-10 20:46:05 +0200
committerunknown <ingo/mydev@chilla.local>2006-07-10 20:46:05 +0200
commit1a7e4ac0bbe8f87494124bd4ded7fe5e4f99498f (patch)
tree0cbc54a15d93da3ad99331c970b464e151d7564e /mysql-test/t/merge.test
parent945d4606bba0c00c33fe5750bd612918e65be3c2 (diff)
downloadmariadb-git-1a7e4ac0bbe8f87494124bd4ded7fe5e4f99498f.tar.gz
Revoking patch for Bug#10952 on behalf of Brian.
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r--mysql-test/t/merge.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test
index 400279a826b..639129e1393 100644
--- a/mysql-test/t/merge.test
+++ b/mysql-test/t/merge.test
@@ -381,16 +381,6 @@ drop table t1, t2, t3;
# End of 4.1 tests
#
-# 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=MERGE;
-drop table t1;
-
-#
# BUG#19648 - Merge table does not work with bit types
#
create table t1 (b bit(1));