mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-33373 part 2: Unexpected ER_FILE_NOT_FOUND upon reading from logging table after crash recovery
CSV engine shoud set my_errno if use it.
This commit is contained in:
committed by
Oleksandr Byelkin
parent
20f57a8529
commit
b88f1267e4
17
mysql-test/main/log_crash.result
Normal file
17
mysql-test/main/log_crash.result
Normal file
@ -0,0 +1,17 @@
|
||||
#
|
||||
# MDEV-33373: Unexpected ER_FILE_NOT_FOUND upon reading from logging
|
||||
# table after crash recovery
|
||||
#
|
||||
call mtr.add_suppression("Table 'general_log' is marked as crashed and should be repaired");
|
||||
SET GLOBAL log_output="TABLE";
|
||||
CREATE TABLE t (a INT);
|
||||
# restart
|
||||
DROP TABLE t;
|
||||
SELECT count(*) FROM mysql.general_log;
|
||||
count(*)
|
||||
5
|
||||
Warnings:
|
||||
Error 1194 Table 'general_log' is marked as crashed and should be repaired
|
||||
#
|
||||
# End of 10.5 tests
|
||||
#
|
Reference in New Issue
Block a user