summaryrefslogtreecommitdiff
path: root/mysql-test/t/merge.test
diff options
context:
space:
mode:
authorunknown <ingo@mysql.com>2006-06-15 10:58:02 +0200
committerunknown <ingo@mysql.com>2006-06-15 10:58:02 +0200
commit6bc9973183fd16c458e6532ed200c3c718d31326 (patch)
treec535f394cd568fd89d1abd5fe9312e81e7698ddb /mysql-test/t/merge.test
parente8288ff926cfa2e4c635c88e706c921a6f7b9235 (diff)
parent2dd1dc62462a9b7348d1c815acacddedb5a62d88 (diff)
downloadmariadb-git-6bc9973183fd16c458e6532ed200c3c718d31326.tar.gz
Merge mysql.com:/home/mydev/mysql-5.0-amerge
into mysql.com:/home/mydev/mysql-5.1-amerge mysql-test/r/lock_multi.result: Auto merged mysql-test/r/merge.result: Auto merged mysql-test/t/merge.test: Auto merged mysql-test/t/lock_multi.test: Manual merge sql/ha_myisammrg.h: Manual merge
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r--mysql-test/t/merge.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test
index 9fee4a03b81..c211ff2ac29 100644
--- a/mysql-test/t/merge.test
+++ b/mysql-test/t/merge.test
@@ -393,4 +393,13 @@ insert into t1 values ("Monty"),("WAX"),("Walrus");
alter table t1 engine=MERGE;
drop table t1;
+#
+# BUG#19648 - Merge table does not work with bit types
+#
+create table t1 (b bit(1));
+create table t2 (b bit(1));
+create table tm (b bit(1)) engine = merge union = (t1,t2);
+select * from tm;
+drop table tm, t1, t2;
+
# End of 5.0 tests