1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fix and test case for the bug #787: HANDLER without INDEX doesn't work with deleted rows

This commit is contained in:
ram@mysql.r18.ru
2003-07-04 14:41:01 +05:00
parent 52a7f95678
commit 2927f2a293
3 changed files with 50 additions and 22 deletions

View File

@ -148,3 +148,22 @@ alter table t1 type=MyISAM;
handler t2 read first;
ERROR 42S02: Unknown table 't2' in HANDLER
drop table t1;
create table t1 (a int);
insert into t1 values (1),(2),(3),(4),(5),(6);
delete from t1 limit 2;
handler t1 open;
handler t1 read first;
a
3
handler t1 read first limit 1,1;
a
4
handler t1 read first limit 2,2;
a
5
6
delete from t1 limit 3;
handler t1 read first;
a
6
drop table t1;