mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
77b7f793f9
fix uninitialized struct member
15 lines
614 B
Text
15 lines
614 B
Text
call mtr.add_suppression('Unknown key id 1. Can''t continue');
|
|
set global aria_encrypt_tables= 1;
|
|
create table t1 (pk int primary key, a int, key(a)) engine=aria transactional=1;
|
|
alter table t1 disable keys;
|
|
insert into t1 values (1,1);
|
|
alter table t1 enable keys;
|
|
ERROR HY000: Unknown key id 1. Can't continue!
|
|
repair table t1 use_frm;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 repair warning Number of rows changed from 0 to 1
|
|
test.t1 repair Error Unknown key id 1. Can't continue!
|
|
test.t1 repair Error Unknown key id 1. Can't continue!
|
|
test.t1 repair status OK
|
|
drop table t1;
|
|
set global aria_encrypt_tables= default;
|