⚝
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_stats_auto_recalc_on_nonexistent.test
# # Test the persistent stats auto recalc when persistent stats do not exist # -- source include/have_innodb.inc -- vertical_results -- let $check_stats1 = SELECT COUNT(*) FROM mysql.innodb_table_stats WHERE table_name = 't' -- let $check_stats2 = SELECT COUNT(*) FROM mysql.innodb_index_stats WHERE table_name = 't' -- echo Test with default setting CREATE TABLE t (a INT, PRIMARY KEY (a)) ENGINE=INNODB; # the CREATE should have inserted zeroed stats -- eval $check_stats1 -- eval $check_stats2 # close the table FLUSH TABLE t; DELETE FROM mysql.innodb_index_stats WHERE table_name = 't'; DELETE FROM mysql.innodb_table_stats WHERE table_name = 't'; -- eval $check_stats1 -- eval $check_stats2 # open the table, causing stats recalc/save SELECT * FROM t; -- eval $check_stats1 -- eval $check_stats2 DROP TABLE t; -- echo Test with explicit enable CREATE TABLE t (a INT, PRIMARY KEY (a)) ENGINE=INNODB STATS_AUTO_RECALC=1; # the CREATE should have inserted zeroed stats -- eval $check_stats1 -- eval $check_stats2 # close the table FLUSH TABLE t; DELETE FROM mysql.innodb_index_stats WHERE table_name = 't'; DELETE FROM mysql.innodb_table_stats WHERE table_name = 't'; -- eval $check_stats1 -- eval $check_stats2 # open the table, causing stats recalc/save SELECT * FROM t; -- eval $check_stats1 -- eval $check_stats2 DROP TABLE t; -- echo Test with explicit disable CREATE TABLE t (a INT, PRIMARY KEY (a)) ENGINE=INNODB STATS_AUTO_RECALC=0; # the CREATE should have inserted zeroed stats -- eval $check_stats1 -- eval $check_stats2 # close the table FLUSH TABLE t; DELETE FROM mysql.innodb_index_stats WHERE table_name = 't'; DELETE FROM mysql.innodb_table_stats WHERE table_name = 't'; -- eval $check_stats1 -- eval $check_stats2 # open the table, stats should not be present, since autorecalc is disabled SELECT * FROM t; -- eval $check_stats1 -- eval $check_stats2 DROP TABLE t;