summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_btree.result
diff options
context:
space:
mode:
authorunknown <ram@mysql.r18.ru>2003-06-10 12:19:28 +0500
committerunknown <ram@mysql.r18.ru>2003-06-10 12:19:28 +0500
commit684b0da142240856a39414f8a5b364bf9da7f266 (patch)
tree211244f1be888cfee742d4ceecead17a4a0b5cd4 /mysql-test/r/heap_btree.result
parentf16bbb173437436b3b14218c289ca5ea210871e5 (diff)
downloadmariadb-git-684b0da142240856a39414f8a5b364bf9da7f266.tar.gz
Bugfix for HEAP table rb-index scan.
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r--mysql-test/r/heap_btree.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result
index 6ae00c89a3a..1ba8d429fc4 100644
--- a/mysql-test/r/heap_btree.result
+++ b/mysql-test/r/heap_btree.result
@@ -24,8 +24,8 @@ a b
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;
a b
drop table t1;