diff options
author | unknown <ram@mysql.r18.ru> | 2003-06-10 12:19:28 +0500 |
---|---|---|
committer | unknown <ram@mysql.r18.ru> | 2003-06-10 12:19:28 +0500 |
commit | 85be6a0ac822dd0469eb1da9834b477ffa74ae68 (patch) | |
tree | 211244f1be888cfee742d4ceecead17a4a0b5cd4 /mysql-test/t/heap_btree.test | |
parent | 8484e6f7598251c50c2439e6b2d26afe6729435a (diff) | |
download | mariadb-git-85be6a0ac822dd0469eb1da9834b477ffa74ae68.tar.gz |
Bugfix for HEAP table rb-index scan.
Diffstat (limited to 'mysql-test/t/heap_btree.test')
-rw-r--r-- | mysql-test/t/heap_btree.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/heap_btree.test b/mysql-test/t/heap_btree.test index 3c2ff249415..80a7753d4b1 100644 --- a/mysql-test/t/heap_btree.test +++ b/mysql-test/t/heap_btree.test @@ -21,8 +21,8 @@ alter table t1 add c int not null, add key using BTREE (c,a); drop table t1; create table t1 (a int not null,b int not null, primary key using BTREE (a)) type=heap comment="testing heaps"; -insert into t1 values(1,1),(2,2),(3,3),(4,4); -delete from t1 where a > 0; +insert into t1 values(-2,-2),(-1,-1),(0,0),(1,1),(2,2),(3,3),(4,4); +delete from t1 where a > -3; select * from t1; drop table t1; |