1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

test case for MyISAM sort-repair bug

This commit is contained in:
serg@serg.mylan
2004-01-21 21:43:41 +01:00
parent 6ecd67981a
commit e7a37d41b0
2 changed files with 15 additions and 0 deletions

View File

@ -385,3 +385,9 @@ check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
drop table t1;
create table t1 ( a text not null, key a (a(20)));
insert into t1 values ('aaa '),('aaa');
repair table t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
drop table t1;