Server IP : 104.21.38.3 / Your IP : 162.158.88.151 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/innodb/t/ |
Upload File : |
# # Bug#59410 read uncommitted: unlock row could not find a 3 mode lock on the record # -- source include/have_innodb.inc # only interested that the following do not produce something like # InnoDB: Error: unlock row could not find a 2 mode lock on the record # in the error log create table `bug59410_1`(`a` int)engine=innodb; insert into `bug59410_1` values (1),(2),(3); select 1 from `bug59410_1` where `a` <> any ( select 1 from `bug59410_1` where `a` <> 1 for update) for update; drop table bug59410_1; create table bug59410_2(`a` char(1),`b` int)engine=innodb; insert into bug59410_2 values('0',0); --source include/turn_off_only_full_group_by.inc set transaction isolation level read uncommitted; start transaction; set @a=(select b from bug59410_2 where (select 1 from bug59410_2 where a group by @a=b) group by @a:=b); --source include/restore_sql_mode_after_turn_off_only_full_group_by.inc drop table bug59410_2;