mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
Additional fix for the previous patch.
This commit is contained in:
parent
d8e024baf5
commit
487f24320a
1 changed files with 17 additions and 0 deletions
|
@ -11335,6 +11335,23 @@ cp932_bin 6109
|
|||
cp932_bin 61
|
||||
cp932_bin 6120
|
||||
drop table t1;
|
||||
create table t2 (a char(1));
|
||||
insert into t2 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7');
|
||||
insert into t2 values ('8'),('9'),('A'),('B'),('C'),('D'),('E'),('F');
|
||||
create table t1 (
|
||||
a varchar(2) character set cp932
|
||||
) engine=myisam;
|
||||
insert into t1
|
||||
select unhex(concat(t24.a, t23.a, t22.a, t21.a))
|
||||
from t2 t21, t2 t22, t2 t23, t2 t24;
|
||||
delete from t1 where a='';
|
||||
alter table t1 add key(a);
|
||||
check table t1;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 check error Key in wrong position at page 176128
|
||||
test.t1 check error Corrupt
|
||||
drop table t1;
|
||||
drop table t2;
|
||||
create table t1 (col1 varchar(1)) character set cp932;
|
||||
insert into t1 values ('a');
|
||||
insert into t1 values ('ab');
|
||||
|
|
Loading…
Add table
Reference in a new issue