mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
0b2af6bdfd
Fix problem with MyISAM and rows of length 65517-65520
19 lines
387 B
Text
19 lines
387 B
Text
#
|
|
# Test possible problem with rows that are about 65535 bytes long
|
|
#
|
|
|
|
create table t1 (a tinyint not null auto_increment, b blob not null, primary key (a));
|
|
|
|
let $1=100;
|
|
while ($1)
|
|
{
|
|
eval insert into t1 (b) values(repeat(char(65+$1),65540-$1));
|
|
dec $1;
|
|
}
|
|
check table t1;
|
|
repair table t1;
|
|
delete from t1 where (a & 1);
|
|
check table t1;
|
|
repair table t1;
|
|
check table t1;
|
|
drop table t1;
|