⚝
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 :
innodb_upd_stats_if_needed_not_inited.test
# # Test executing row_update_statistics_if_needed() when the stats # for the given table are not initialized # -- source include/have_debug.inc -- source include/have_innodb.inc # include/restart_mysqld.inc does not work in embedded mode -- source include/not_embedded.inc # Windows does not have grep(1) -- source include/not_windows.inc CREATE TABLE parent ( a INT PRIMARY KEY ) ENGINE=INNODB; CREATE TABLE child ( a INT PRIMARY KEY, FOREIGN KEY (a) REFERENCES parent(a) ON DELETE CASCADE ) ENGINE=INNODB; INSERT INTO parent VALUES (1); INSERT INTO child VALUES (1); -- source include/restart_mysqld.inc SET SESSION DEBUG='+d,test_upd_stats_if_needed_not_inited'; # this will cause row_update_statistics_if_needed() to be called for a table # that is not opened (child) and thus has table->stat_initialized set to FALSE DELETE FROM parent; SET SESSION DEBUG='-d,test_upd_stats_if_needed_not_inited'; -- exec grep 'test_upd_stats_if_needed_not_inited was executed' $MYSQLTEST_VARDIR/log/mysqld.1.err || true DROP TABLE child; DROP TABLE parent;