summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-03-07 15:36:14 +0200
committerunknown <Sinisa@sinisa.nasamreza.org>2002-03-07 15:36:14 +0200
commit81254025b8a2b162d4ae8a7d8067ce74d93b80df (patch)
tree6b0b2ce046a188785ae32330406bc66a7183bad2 /mysql-test/r
parent18a68a6208767f67d35c0081f1dc31587780cdd6 (diff)
downloadmariadb-git-81254025b8a2b162d4ae8a7d8067ce74d93b80df.tar.gz
tests for bug fix
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/heap.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index fc4a116307e..a7a69694b65 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -25,6 +25,12 @@ alter table t1 add c int not null, add key (c,a);
drop table t1;
create table t1 (a int not null,b int not null, primary key (a)) type=heap comment="testing heaps";
insert into t1 values(1,1),(2,2),(3,3),(4,4);
+delete from t1 where a > 0;
+select * from t1;
+a b
+drop table t1;
+create table t1 (a int not null,b int not null, primary key (a)) type=heap comment="testing heaps";
+insert into t1 values(1,1),(2,2),(3,3),(4,4);
alter table t1 modify a int not null auto_increment, type=myisam, comment="new myisam table";
select * from t1;
a b