summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_btree.result
diff options
context:
space:
mode:
authoristruewing@chilla.local <>2007-03-27 17:59:49 +0200
committeristruewing@chilla.local <>2007-03-27 17:59:49 +0200
commitf90c056b5c67ccf9d5012f9db8e3e075b5b3e8c9 (patch)
tree488f8a4e87714bd4ea3abfe31971540c3ef4162e /mysql-test/r/heap_btree.result
parent1b64741b9d0e6aa207180e01dc1fac8a640deb65 (diff)
parent49884979b43f99ecdff58d4f2861be3e459f8d70 (diff)
downloadmariadb-git-f90c056b5c67ccf9d5012f9db8e3e075b5b3e8c9.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-engines
into chilla.local:/home/mydev/mysql-5.1-bug24985
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 18d3dab1b06..ab4b892170a 100644
--- a/mysql-test/r/heap_btree.result
+++ b/mysql-test/r/heap_btree.result
@@ -295,6 +295,18 @@ A 1
B 0
C 0
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);