summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_btree.result
diff options
context:
space:
mode:
authorunknown <istruewing@chilla.local>2007-03-27 12:46:54 +0200
committerunknown <istruewing@chilla.local>2007-03-27 12:46:54 +0200
commit5e0ce03954693c5160feeebd475b048f8b6b2497 (patch)
treeb8ee8e67c2e623b6242fe216b47395b22e38168d /mysql-test/r/heap_btree.result
parente3108256e7e5118cd2097f2bfbc9987018a6b8a5 (diff)
parentde3c37195691a19ac504dd60daf516219d59c503 (diff)
downloadmariadb-git-5e0ce03954693c5160feeebd475b048f8b6b2497.tar.gz
Merge chilla.local:/home/mydev/mysql-5.0-bug24985
into chilla.local:/home/mydev/mysql-5.1-bug24985 mysql-test/r/heap_btree.result: Auto merged mysql-test/t/heap_btree.test: Auto merged storage/heap/ha_heap.cc: Auto merged storage/myisam/ha_myisam.cc: Auto merged
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r--mysql-test/r/heap_btree.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result
index fd789a39d88..a44d7333af3 100644
--- a/mysql-test/r/heap_btree.result
+++ b/mysql-test/r/heap_btree.result
@@ -280,6 +280,18 @@ a
1
1
drop table t1;
+CREATE TABLE t1 (
+c1 ENUM('1', '2'),
+UNIQUE USING BTREE(c1)
+) ENGINE= MEMORY DEFAULT CHARSET= utf8;
+INSERT INTO t1 VALUES('1'), ('2');
+DROP TABLE t1;
+CREATE TABLE t1 (
+c1 SET('1', '2'),
+UNIQUE USING BTREE(c1)
+) ENGINE= MEMORY DEFAULT CHARSET= utf8;
+INSERT INTO t1 VALUES('1'), ('2');
+DROP TABLE t1;
End of 4.1 tests
CREATE TABLE t1(val INT, KEY USING BTREE(val)) ENGINE=memory;
INSERT INTO t1 VALUES(0);