Server IP : 172.67.216.182 / Your IP : 162.158.163.229 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/r/ |
Upload File : |
# #Bug #21133329 HANGING "SYSTEM LOCK" WHEN EXECUTING "FLUSH TABLE ... FOR EXPORT" # CREATE TABLE t1 ( c1 BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, c2 BIGINT, c3 VARCHAR(2048), c4 VARCHAR(2048), INDEX idx1(c2), INDEX idx2(c3(512)), INDEX idx3(c4(512))) Engine=InnoDB; CREATE TABLE t2 ( f1 int PRIMARY KEY) engine=innodb; SET GLOBAL INNODB_PURGE_STOP_NOW=ON; SET GLOBAL innodb_disable_background_merge=ON; SET GLOBAL innodb_stats_persistent=OFF; show variables like '%innodb_stats_persistent%'; Variable_name Value innodb_stats_persistent OFF innodb_stats_persistent_sample_pages 20 INSERT INTO t1(c2, c3, c4) VALUES (1, REPEAT('a', 2048), REPEAT('a', 2048)), (2, REPEAT('b', 2048), REPEAT('b', 2048)), (3, REPEAT('c', 2048), REPEAT('c', 2048)), (4, REPEAT('d', 2048), REPEAT('d', 2048)); INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; INSERT INTO t1(c2, c3, c4) SELECT c2, c3, c4 FROM t1; FLUSH TABLES t2 FOR EXPORT; UNLOCK TABLES; SET GLOBAL innodb_disable_background_merge=OFF; SET GLOBAL INNODB_PURGE_RUN_NOW=ON; SET GLOBAL innodb_stats_persistent=ON; DROP TABLE t1,t2;