1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Reduce the next-key locking of READ UNCOMMITTED to match that of

READ COMMITTED in the InnoDB Plugin. (Bug #48607)
This commit is contained in:
Marko Makela
2010-04-29 15:27:43 +02:00
parent 6fa8e485e5
commit 74ae1326c9
5 changed files with 25 additions and 18 deletions

View File

@ -1458,7 +1458,7 @@ row_unlock_for_mysql(
if (UNIV_UNLIKELY
(!srv_locks_unsafe_for_binlog
&& trx->isolation_level != TRX_ISO_READ_COMMITTED)) {
&& trx->isolation_level > TRX_ISO_READ_COMMITTED)) {
fprintf(stderr,
"InnoDB: Error: calling row_unlock_for_mysql though\n"