diff options
author | ram@mysql.r18.ru <> | 2003-06-10 12:19:28 +0500 |
---|---|---|
committer | ram@mysql.r18.ru <> | 2003-06-10 12:19:28 +0500 |
commit | bf4549317554082ff9e84eb2ede0c7f473ca6d41 (patch) | |
tree | 211244f1be888cfee742d4ceecead17a4a0b5cd4 /mysql-test/r/heap_btree.result | |
parent | 1ffc3cca56a87ae7a36cd5a39501ec96d9ef529c (diff) | |
download | mariadb-git-bf4549317554082ff9e84eb2ede0c7f473ca6d41.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.result | 4 |
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; |