ha_innodb.cc:
Add conversion of the InnoDB error DB_LOCK_TABLE_FULL to the corresponding MySQL error sql/ha_innodb.cc: Add conversion of the InnoDB error DB_LOCK_TABLE_FULL to the corresponding MySQL error
This commit is contained in:
parent
a560f0fa38
commit
5557ae747e
@ -331,6 +331,9 @@ convert_error_code_to_mysql(
|
||||
} else if (error == (int) DB_NO_SAVEPOINT) {
|
||||
|
||||
return(HA_ERR_NO_SAVEPOINT);
|
||||
} else if (error == (int) DB_LOCK_TABLE_FULL) {
|
||||
|
||||
return(HA_ERR_LOCK_TABLE_FULL);
|
||||
} else {
|
||||
return(-1); // Unknown error
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user