summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap.result
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2005-03-15 19:31:52 +0400
committerunknown <ramil@mysql.com>2005-03-15 19:31:52 +0400
commit3c42daa9a371e7900f10d2bfb2cf20e46cfba122 (patch)
tree38d287295dc7d362de78330407519219d297132a /mysql-test/r/heap.result
parent9af776c8cbad88bf4d42686c91a6aa8a67484d56 (diff)
parent0ba3164e0e0fa7217059413440f7ab2f844efce7 (diff)
downloadmariadb-git-3c42daa9a371e7900f10d2bfb2cf20e46cfba122.tar.gz
merging
heap/hp_create.c: Auto merged sql/filesort.cc: Auto merged mysql-test/r/heap.result: manual merging mysql-test/t/heap.test: manual merging sql/ha_heap.cc: manual merging
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r--mysql-test/r/heap.result42
1 files changed, 42 insertions, 0 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index f79bcf3f1dd..db20b242962 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -665,3 +665,45 @@ length(v)
65530
drop table t1;
set storage_engine=MyISAM;
+create table t1 (a bigint unsigned auto_increment primary key, b int,
+key (b, a)) engine=heap;
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+insert t1 (b) values (1);
+select * from t1;
+a b
+1 1
+2 1
+3 1
+4 1
+5 1
+6 1
+7 1
+8 1
+drop table t1;
+create table t1 (a int not null, b int not null auto_increment,
+primary key(a, b), key(b)) engine=heap;
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+insert t1 (a) values (1);
+select * from t1;
+a b
+1 1
+1 2
+1 3
+1 4
+1 5
+1 6
+1 7
+1 8
+drop table t1;