Server IP : 172.67.216.182 / Your IP : 172.70.143.70 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 : |
--source include/have_innodb.inc --source include/not_embedded.inc --source include/no_valgrind_without_big.inc let $n=250; let $t=veryLongTableNameToCreateMLOG_FILE_NAMErecords; --disable_query_log call mtr.add_suppression("InnoDB: Resizing redo log"); call mtr.add_suppression("InnoDB: Starting to delete and rewrite log files"); call mtr.add_suppression("InnoDB: New log files created"); let $i=$n; while ($i) { --eval CREATE TABLE $t$i(a INT PRIMARY KEY) ENGINE=InnoDB; dec $i; } # If we set above n to 500, this test case could fail easily, because # the inndob buffer pool is too small, some of which would be occupied # by the recv*. With n=250, this test case could sporadically fail too. # So we have to set buffer pool size to 50M which should be enough for this # test case. Once we fix the bug#22179133 and bug#22186325, we should use # the default innodb buffer pool(or the smaller one). let $restart_parameters = restart: --innodb-log-files-in-group=2 --innodb-log-file-size=4M --innodb-buffer-pool-size=50M; --source include/kill_and_restart_mysqld.inc --disable_query_log let $i=$n; while ($i) { --eval DROP TABLE $t$i; dec $i; } --enable_query_log