1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix for LOAD DATA FROM MASTER when using tables with checksum

Fixed some wrong test cases
This commit is contained in:
monty@hundin.mysql.fi
2001-09-18 04:58:15 +03:00
parent db61a3456e
commit cd78a8be66
15 changed files with 111 additions and 31 deletions

View File

@@ -702,6 +702,9 @@ void handler::print_error(int error, myf errflag)
case HA_ERR_LOCK_TABLE_FULL:
textno=ER_LOCK_TABLE_FULL;
break;
case HA_ERR_LOCK_DEADLOCK:
textno=ER_LOCK_DEADLOCK;
break;
case HA_ERR_READ_ONLY_TRANSACTION:
textno=ER_READ_ONLY_TRANSACTION;
break;