diff options
author | unknown <acurtis@xiphis.org> | 2006-05-30 17:10:53 -0700 |
---|---|---|
committer | unknown <acurtis@xiphis.org> | 2006-05-30 17:10:53 -0700 |
commit | 11dbc1c48f6344cda00bae8e939d33f0ff215cd7 (patch) | |
tree | 9989e1d6775fca6aedd8e17a1bbefc81923b2ff6 /mysql-test/r/merge.result | |
parent | 4f8407b6315736ab52b49e1e248e7585614c3f20 (diff) | |
download | mariadb-git-11dbc1c48f6344cda00bae8e939d33f0ff215cd7.tar.gz |
Bug#19648
"Merge table does not work with bit types"
MERGE should have HA_CAN_BIT_FIELD feature bit set or else table row is
formatted incorrectly.
mysql-test/r/merge.result:
Bug#19648
Test for fix
mysql-test/t/merge.test:
Bug#19648
Test for fix
sql/ha_myisammrg.h:
Bug#19648
Must have HA_CAN_BIT_FIELD for BIT type support
Diffstat (limited to 'mysql-test/r/merge.result')
-rw-r--r-- | mysql-test/r/merge.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result index 9a34d6fba58..568f83b7d6d 100644 --- a/mysql-test/r/merge.result +++ b/mysql-test/r/merge.result @@ -776,3 +776,9 @@ insert into t1 values ("Monty"),("WAX"),("Walrus"); alter table t1 engine=MERGE; ERROR HY000: Table storage engine for 't1' doesn't have this option drop table t1; +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; +b +drop table tm, t1, t2; |