1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-17068 mysql system table is marked as crashed and should be repaired after the server crashes or is killed

- Changed ERROR to WARNING for MyISAM/Aria message
  that are warnings in the check utilities.
  This affects for example "client is using or
  hasn't closed the table properly".
- Print "Table is fixed" if check succeded in
  fixing the table.
This commit is contained in:
Monty
2018-08-28 09:42:22 +03:00
parent f451fd8c06
commit 8cc53aded9
11 changed files with 106 additions and 27 deletions

View File

@ -87,7 +87,7 @@ a
6
Warnings:
Error 145 Table 't1' is marked as crashed and should be repaired
Error 1034 Number of rows changed from 3 to 6
Warning 1034 Number of rows changed from 3 to 6
#
# Cleanup
#
@ -139,7 +139,7 @@ a
4
Warnings:
Error 145 Table 't1' is marked as crashed and should be repaired
Error 1034 Number of rows changed from 1 to 2
Warning 1034 Number of rows changed from 1 to 2
connect con2, localhost, root;
ALTER TABLE t2 ADD val INT;
connection default;