⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
innodb
/
t
/
View File Name :
log_file_size_checkpoint.test
--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