polardbxengine/mysql-test/suite/innodb/r/innodb_force_recovery.result

101 lines
3.6 KiB
Plaintext

call mtr.add_suppression("Unable to use user mysql.session account when connecting the server for internal plugin requests");
call mtr.add_suppression("Failed to find tablespace for table .* in the cache. Attempting to load the tablespace with space id");
create table t1(f1 int not null, f2 int not null, index idx(f2))engine=innodb;
create table t2(f1 int not null, f2 int not null, index idx(f2))engine=innodb;
insert into t1 values(1, 2);
insert into t2 values(1, 2);
SET GLOBAL innodb_fast_shutdown = 0;
# restart: --innodb-force-recovery=4
select * from t1;
f1 f2
1 2
insert into t1 values(2, 3);
ERROR HY000: Table 't1' is read only
alter table t1 add f3 int not null, algorithm=copy;
ERROR HY000: InnoDB is in read only mode.
alter table t1 add f3 int not null, algorithm=inplace;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
drop index idx on t1;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
update t1 set f1=3 where f2=2;
ERROR HY000: Table 't1' is read only
create table t3(f1 int not null)engine=innodb;
ERROR HY000: Running in read-only mode
drop table t3;
ERROR 42S02: Unknown table 'test.t3'
rename table t1 to t3;
ERROR HY000: Error on rename of './test/t1' to './test/t3' (errno: 165 - Table is read only)
truncate table t1;
ERROR HY000: Table 't1' is read only
create tablespace t4 add datafile 't1.ibd' Engine=InnoDB;
ERROR HY000: Running in read-only mode
# restart
drop table t1;
show tables;
Tables_in_test
t2
# Restart the server with innodb_force_recovery as 5.
# restart: --innodb-force-recovery=5
select * from t2;
f1 f2
1 2
insert into t2 values(2, 3);
ERROR HY000: Table 't2' is read only
alter table t2 add f3 int not null, algorithm=copy;
ERROR HY000: InnoDB is in read only mode.
alter table t2 add f3 int not null, algorithm=inplace;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
drop index idx on t2;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
update t2 set f1=3 where f2=2;
ERROR HY000: Table 't2' is read only
create table t1(f1 int not null)engine=innodb;
ERROR HY000: Running in read-only mode
drop table t1;
ERROR 42S02: Unknown table 'test.t1'
rename table t2 to t3;
ERROR HY000: Error on rename of './test/t2' to './test/t3' (errno: 165 - Table is read only)
truncate table t2;
ERROR HY000: Table 't2' is read only
create tablespace t1 add datafile 't1.ibd' Engine=InnoDB;
ERROR HY000: Running in read-only mode
drop table t2;
ERROR HY000: Storage engine can't drop table 'test.t2'
show tables;
Tables_in_test
t2
# Restart the server with innodb_force_recovery as 6.
# restart: --innodb-force-recovery=6
select * from t2;
f1 f2
1 2
insert into t2 values(2, 3);
ERROR HY000: Can't lock file (errno: 165 - Table is read only)
alter table t2 add f3 int not null, algorithm=copy;
ERROR HY000: InnoDB is in read only mode.
alter table t2 add f3 int not null, algorithm=inplace;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
drop index idx on t2;
ERROR HY000: Operation not allowed when innodb_force_recovery > 0.
update t2 set f1=3 where f2=2;
ERROR HY000: Can't lock file (errno: 165 - Table is read only)
create table t1(f1 int not null)engine=innodb;
ERROR HY000: Running in read-only mode
drop table t1;
ERROR 42S02: Unknown table 'test.t1'
rename table t2 to t3;
ERROR HY000: Error on rename of './test/t2' to './test/t3' (errno: 165 - Table is read only)
truncate table t2;
ERROR HY000: Table 't2' is read only
create tablespace t1 add datafile 't1.ibd' Engine=InnoDB;
ERROR HY000: Running in read-only mode
drop table t2;
ERROR HY000: Storage engine can't drop table 'test.t2'
show tables;
Tables_in_test
t2
# restart
drop table t2;
show tables;
Tables_in_test