mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
9d0ea0ab4b
mysql-test/suite/maria/r/maria-autozerofill.result: Updated test case storage/maria/ha_maria.cc: Write create_rename_lsn for auto_zerofilled tables. storage/maria/ma_delete.c: Added DBUG_ASSERT() to find errors when deleting pages. storage/maria/ma_locking.c: Fixed typo storage/maria/ma_open.c: Don't regard file as movable if create_rename_lsn is not LSN_NEEDS_NEW_STATE_LSNS
20 lines
595 B
Text
20 lines
595 B
Text
call mtr.add_suppression("Table 't1' is marked as crashed and should be repaired");
|
|
drop database if exists mysqltest;
|
|
create database mysqltest;
|
|
use mysqltest;
|
|
create table t1(a int) engine=aria;
|
|
insert into t1 values(1);
|
|
flush table t1;
|
|
create_rename_lsn has non-magic value
|
|
* shut down mysqld, removed logs, restarted it
|
|
select * from t1;
|
|
a
|
|
1
|
|
Warnings:
|
|
Error 1194 t1' is marked as crashed and should be repaired
|
|
flush table t1;
|
|
Status: changed,sorted index pages,zerofilled
|
|
insert into t1 values(2);
|
|
flush table t1;
|
|
create_rename_lsn has non-magic value
|
|
drop database mysqltest;
|