⚝
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
/
include
/
View File Name :
innodb_stats_table_flag.inc
# -- echo ===== -- echo === Test ANALYZE behavior after default creation -- echo ===== CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag; CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB STATS_PERSISTENT=default; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag; # -- echo ===== -- echo === Test ANALYZE behavior after creation with explicit PS=OFF -- echo ===== CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB STATS_PERSISTENT=0; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag; # -- echo ===== -- echo === Test ANALYZE behavior after creation with explicit PS=ON -- echo ===== CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB STATS_PERSISTENT=1; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag; # -- echo ===== -- echo === Test ANALYZE behavior after creation with explicit PS=OFF, -- echo === then ALTER to ON, then ALTER to OFF, then ALTER to default -- echo ===== CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB STATS_PERSISTENT=0; ALTER TABLE test_ps_flag STATS_PERSISTENT=1; # also check that the change from the ALTER TABLE survives server restart -- source include/restart_mysqld.inc -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc ALTER TABLE test_ps_flag STATS_PERSISTENT=0; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc ALTER TABLE test_ps_flag STATS_PERSISTENT=default; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag; # -- echo ===== -- echo === Test ANALYZE behavior after creation with explicit PS=ON, -- echo === then ALTER to OFF, then ALTER to ON, then ALTER to default -- echo ===== CREATE TABLE test_ps_flag (a INT) ENGINE=INNODB STATS_PERSISTENT=1; ALTER TABLE test_ps_flag STATS_PERSISTENT=0; # also check that the change from the ALTER TABLE survives server restart -- source include/restart_mysqld.inc -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc ALTER TABLE test_ps_flag STATS_PERSISTENT=1; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc ALTER TABLE test_ps_flag STATS_PERSISTENT=default; -- source suite/innodb/include/innodb_stats_table_flag_analyze.inc DROP TABLE test_ps_flag;